items.spriteCssClassString
Specifies the custom CSS class that is added to the sprite icon element of the item.
Example
<button id="splitButton">Command</button>
<script>
$("#splitButton").kendoSplitButton({
items: [
{ text: "Home", spriteCssClass: "k-sprite sprite-home" },
{ text: "Dashboard", spriteCssClass: "k-sprite sprite-dashboard" },
{ text: "Reports", spriteCssClass: "k-sprite sprite-reports" }
]
});
</script>
In this article