setting tab order for Dhtmlx grid column

Hi,



I have used Dhtmlx Grid in my code. Here ,I added Add row button on each row of grid

On click of add row button the new row should be added and the focus should be set on the first column of the new row.

So , What is the dhtmlx api to set the tab order for rows in grid?



-

Kunal

Use the following function:
function addRow(){
var newId = mygrid.uid();
mygrid.addRow(newId,“some”);
mygrid.selectCell(mygrid.getRowIndex(newId),0,false,false,true);
}