When i try to change text of built-in commands (for example: create), then kendoGrid command doesn't work properly (no action). I just changed the grid "editing" example from
$("#grid").kendoGrid({
dataSource: dataSource,
navigatable: true,
pageable: true,
height: 400,
toolbar: ["create", "save", "cancel"],
to
$("#grid").kendoGrid({
dataSource: dataSource,
navigatable: true,
pageable: true,
height: 400,
toolbar: [{ command: "create", text: "Custom text" }, "save", "cancel"],
It's seems that event does not bind automatically or is something else?
Thank's.
AG
$("#grid").kendoGrid({
dataSource: dataSource,
navigatable: true,
pageable: true,
height: 400,
toolbar: ["create", "save", "cancel"],
to
$("#grid").kendoGrid({
dataSource: dataSource,
navigatable: true,
pageable: true,
height: 400,
toolbar: [{ command: "create", text: "Custom text" }, "save", "cancel"],
It's seems that event does not bind automatically or is something else?
Thank's.
AG