items.idString
Specifies the id of the item.
Example
<button id="splitButton">Command</button>
<script>
$("#splitButton").kendoSplitButton({
items: [
{ text: "Option 1", id: "option-1" },
{ text: "Option 2", id: "option-2" },
{ text: "Option 3", id: "option-3" }
]
});
</script>