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