setOptions
Reconfigures the widget with new options, re-rendering the chip and popover.
Parameters
options Object
The new options to apply.
Example - update the sources
<span id="citation"></span>
<script>
$("#citation").kendoCitation({
sources: [{ url: "https://example.com", title: "Old Source" }]
});
var citation = $("#citation").data("kendoCitation");
citation.setOptions({
sources: [{ url: "https://example.org", title: "New Source" }]
});
</script>