items.urlString
Specifies the url of the item - it will render a
element and will navigate the browser on click.
Example
<button id="splitButton">Command</button>
<script>
$("#splitButton").kendoSplitButton({
items: [
{ text: "Home", url: "/home" },
{ text: "Products", url: "/products" },
{ text: "Support", url: "/support" },
{ text: "Contact", url: "/contact" }
]
});
</script>
In this article