I was wondering if the following is possible?
I have a custom command button in my grid:
columns.Command(command =>
{
command.Custom("options").Text("...").Click("showMenu");
});
This opens a small menu next to the button that contains a few options.
I am wondering if it is possible to have the edit button on this menu?
I can get the row data like so:
var grid = $("#grid").data("kendoGrid");
var dataItem = grid.dataItem($(e.currentTarget).closest("tr"));
How do I then call the edit popup for the row?
Thanks
I have a custom command button in my grid:
columns.Command(command =>
{
command.Custom("options").Text("...").Click("showMenu");
});
This opens a small menu next to the button that contains a few options.
I am wondering if it is possible to have the edit button on this menu?
I can get the row data like so:
var grid = $("#grid").data("kendoGrid");
var dataItem = grid.dataItem($(e.currentTarget).closest("tr"));
How do I then call the edit popup for the row?
Thanks