This question is locked. New answers and comments are not allowed.
The following can be used to open a grid's editor through javascript:
var selectedCell = $(".t-state-selected");
$("#SpeedDialGrid").data("tGrid").editRow(selectedCell);
This method does not work for grids that have batch editing. Is there a method that can be used to open a specific cell for editing using javascript?
var selectedCell = $(".t-state-selected");
$("#SpeedDialGrid").data("tGrid").editRow(selectedCell);
This method does not work for grids that have batch editing. Is there a method that can be used to open a specific cell for editing using javascript?