toolbar.text String

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 - specifying the text for the command button

<div id="propertyGrid"></div>
<script>
  $("#propertyGrid").kendoPropertyGrid({
    toolbar: [
      { name: "custom", text: "My Command" }
    ],
    model: {
        foo: "bar",
        baz: 5
    },
    width: 500
  });
</script>
In this article