SMART datagrid v.1 > Classes > TreeOptions
Callback function which returns whether to display the footer of tree row.
The footer will be displayed only in the row which has returned true in this callback function. You can also specify levels by footerLevels property, and if specify this property, footerLevels will be ignored.
Defaults to null.
tree.setTreeOptions({
footerDisplayCallback: function (row) {
return row.level() == 1;
}
});