SMART datagrid v1.4 > 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