SMART datagrid v1.4 > Classes > GridRow

Back  Forward

DataLudi.GridRow.index  property

그리드에서 표시되는 순서. 

부모 행이 접힌 상태이거나, Filtering에서 제외된 행 등 현재 표시되지 않는 행은 -1을 리턴한다. 그리드에 표시되는 첫 번째 행의 값은 0이다. 즉, 이 값은 0에서 rowCount - 1 사이의 값을 갖는다. 

기본값은 -1.

Getter
function index(): Integer
Code -1
    $('#getIndex').click(function () { 
        var rowIndex = grid.focusedRow().index();
        console.log(rowIndex + "번째 row 입니다.");
    };
See Also
isVisible
rowCount
Examples
Row Indicator