SMART datagrid v.1 > Classes > TreeView
The top row which exists within tree view.
It is not displayed in grid. It can be used to visit the top row list which is displayed in tree view.
$('#checkRows').click(function () {
var root = tree.rootRow();
for (var i = root.count() - 1; i >= 0; i--) {
tree.setChecked(root.getChild(i), true);
}
});