spriteCssClass String
Defines a CSS class (or multiple classes separated by spaces), which will be used for applying a background image to a span
element inside the SplitButton.
In case you want to use an icon from the Kendo UI theme sprite background image, it is easier to use the icon property.
The span
element can be added automatically by the widget, or an existing element can be used, if it has a k-sprite
CSS class applied.
Example
<button id="splitbutton" type="button">Button</button>
<script>
$("#splitbutton").kendoSplitButton({
items:[
{ text: "item 1" },
{ text: "item 2" }
],
spriteCssClass: "myEditIcon"
});
</script>