toolbar.items.textString
The text that is displayed by the command button. If not set, the PropertyGrid will use the name option as the button text instead.
Example
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
toolbar: {
items: [
{ name: "search", text: "Find Properties" },
{ name: "sort", text: "Sort Items" },
{ name: "custom", text: "Custom Action" }
]
},
model: {
foo: "bar",
baz: 5
}
});
</script>