Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
65
Javascript function jumps in wrong place
posted

function js_AfterUpdate(grid, cell)
{
var grid = igtbl_getGridById(grid);
var cell = igtbl_getCellById(cell);
var aRow = cell.getRow();
aRow = aRow.getNextRow(true);
var aCell = aRow.getCell(0);
aCell.activate();
}

Can i some how get index by column id for function getCell(0)?