SMART datagrid v.1 > Classes > TreeDataSet
It will be fired just before adding a new child row to the existing Tree Row.
If explicitly return false in this event handler, row adding will be cancelled. Just after adding the row, onRowAdded event will be fired.
treeDataSet.onRowAdding = function (ds, row, index) {
console.log('Adding Row...');
}