SMART datagrid v1.4 > Classes > TreeDataSet
매개변수 parent로 지정한 TreeDataRow의 자손행 수를 리턴한다.
parent는 TreeDataRow 객체나 rowId를 지정할 수 있다. parent가 null이면 데이터셋의 모든 행 개수를 리턴한다.
$('#descendantCount').click(function () {
alert(treeDataSet.getDescendantCount());
});