Required library edition:
Required library file: dhtmlxgrid.js
set selection to specified row-cell
//select second cell from the first row. mygrid.selectCell(0,1); //select second cell from the first row, call "onRowSelect" event, preserve previously selected rows mygrid.selectCell(0,1,true,true); //select second cell from the 11th row, switch cell to the edit mode <button onclick="(arguments[0]||window.event).cancelBubble=true;mygrid.selectCell(10,1,false,false,true)">select cell</button>
Please make sure that necesary cell is loaded before calling this method