items.textString
Sets the text of the button.
Example
<div id="toolbar"></div>
<script>
$("#toolbar").kendoToolBar({
items: [
{ type: "button", text: "Foo" }
]
});
</script>
In this article
String
Sets the text of the button.
<div id="toolbar"></div>
<script>
$("#toolbar").kendoToolBar({
items: [
{ type: "button", text: "Foo" }
]
});
</script>