SMART datagrid v1.4 > Classes > TreeDataRow

Back  Forward

DataLudi.TreeDataRow.index  property

부모행 내에서 이 데이터행의 위치. 

0에서 부모행의 자식행 수 - 1 사이의 값이다. 

Getter
function index(): Integer
Code -1
    $('#resetIcon').click(function () {
        var row = tree.focusedRow();
        if (row) {
            var dataRow = row.dataRow();
            dataRow.setIconIndex(dataRow.index());
        }
    });
See Also
parent
level
트리 개요
Examples
Hello Tree