sourcesArray(default: [])
An array of source objects displayed in the popover. Each source object can include url, title, and description properties.
Example - set sources
<span id="citation"></span>
<script>
$("#citation").kendoCitation({
sources: [
{
url: "https://docs.telerik.com",
title: "Telerik Docs",
description: "Official documentation."
}
]
});
</script>