I would like to finish editing of the actual cell and select the next cell when pressing Enter with the following command:
grid.editor.obj.select();
but this command doesn’t take any rowId or colIndex as a parameter. How to do that?
I would like to finish editing of the actual cell and select the next cell when pressing Enter with the following command:
grid.editor.obj.select();
but this command doesn’t take any rowId or colIndex as a parameter. How to do that?
Please, try to use the selectCell() method:
docs.dhtmlx.com/api__dhtmlxgrid_selectcell.html
to select the required cell
and the editCell() to open editor for the required cell:
docs.dhtmlx.com/api__dhtmlxgrid_editcell.html