toolbar.items.textString
The text displayed by the command button. If not set the name option would be used as the button text instead.
Example - configure toolbar item text
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ field: "name" },
{ field: "age" }
],
dataSource: [
{ name: "Jane Doe", age: 30 },
{ name: "John Doe", age: 33 }
],
toolbar: {
items: [
{ name: "create", text: "Add New Record" },
{ name: "excel", text: "Download Excel" }
]
},
editable: true
});
</script>
In this article