SMART datagrid v.1 > Classes > EditOptions
If it is true, when start appending or inserting rows by insert key, it will move the focus to the first cell.
Defaults to false.
grid.setOptions({
edit: {
editable: true,
firstCellWhenInsert: true
}
});
grid.setEditOptions({
editable: true,
firstCellWhenInsert: true
});
grid.editOptions().setFirstCellWhenInsert(true);