items.textString
Specifies the text of the item.
Example
<button id="splitButton">Command</button>
<script>
$("#splitButton").kendoSplitButton({
items: [
{ text: "New Document" },
{ text: "Open Document" },
{ text: "Save Document" },
{ text: "Print Document" }
]
});
</script>
In this article