SMART datagrid v.1 > Classes > GridRow
Return sibling row which is located before this row.
You can check the next row by next.
$('#getPrevValue').click(function () {
var prevRow = grid.focusedRow().prev();
alert(prevRow.getValue(0));
});