SMART datagrid v.1 > Classes > TreeView
It expands Tree Row which has been specified by parameter row.
If parameter recursive is true, it will also expand descendant rows. onExpanding event will be fired before expanding, and onExpanded event will be fired after expanding. If it is a row which has already been expanded, it will expand descendant rows only when force is true.
$('#btnExpand').click(function () {
var row = tree.focusedRow();
row && tree.expand(row, true, true);
});