toolbar.text String
The text displayed by the command button. If not set the name option would be used as the button text instead.
Example - set the text of the toolbar button
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
toolbar: [
{ name: "create", text: "Add new" }
],
columns: [
{ field: "name" },
{ field: "age" }
],
dataSource: [
{ id: 1, name: "Jane Doe", age: 30 },
{ id: 2, name: "John Doe", age: 33 }
],
editable: true
});
</script>