SMART datagrid v.1 > Classes > GridRow

Back  Forward

DataLudi.GridRow.next  property

Return sibling row which is located after this row. 

You can check the prior row by prev

Getter
function next(): GridRow
Code -1
    $('#getNextValue').click(function () {
        var nextRow = grid.focusedRow().next();
        alert(nextRow.getValue(0));
    });
See Also
prev
GroupRow
Examples
Hello Grid