items.urlString
Specifies the url of the item - it will render a element and will navigate the browser on click.
Example
<button id="dropdownbutton" type="button">Quick Links</button>
<script>
$("#dropdownbutton").kendoDropDownButton({
items: [
{ text: "Google", url: "https://www.google.com" },
{ text: "Kendo UI Demos", url: "https://demos.telerik.com/kendo-ui/" },
{ text: "Documentation", url: "https://docs.telerik.com/kendo-ui/" },
{ text: "Support", url: "https://www.telerik.com/support/kendo-ui" }
]
});
</script>
In this article