SMART datagrid v.1 > Classes > GridBase
If it is row updating or appending in the row specified by parameter row, it will return true.
If it does not specify row or is null, it will return about Focused Row.
$('#edit').click(function () {
if (grid.isRowEditing()) {
grid.commit();
}
grid.edit(grid.getCellIndex(10));
});