items.textString
Specifies the text of the item.
Example
<button id="dropdownbutton" type="button">Choose Language</button>
<script>
$("#dropdownbutton").kendoDropDownButton({
items: [
{ text: "English" },
{ text: "Español" },
{ text: "Français" },
{ text: "Deutsch" },
{ text: "日本語" }
]
});
</script>
In this article