create a grid
this._grid = new ej.treegrid.TreeGrid({
...: ...
});
you add rows after creation
var rows -= [
{..: ..}
];
grid.setProperties({ dataSource: rows });
failed to show the hierarchy
tried to force expand all rows. Give me a runtime error
this._grid.expandAll();
Any ideas
-SK