SMART datagrid v.1 > Classes > GridRow

Back  Forward

DataLudi.GridRow.next  property

返回位于该行之后的兄弟行。 

可以通过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