SMART datagrid v.1 > Classes > GridRow

Back  Forward

DataLudi.GridRow.prev  property

Return sibling row which is located before this row. 

You can check the next row by next

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