expandAll()
expands all collapsed tree nodes
note
The method works only for Grid with the type: "tree"
configuration option
expandAll(): void;
Example
const grid = new dhx.Grid("grid_container", {
type: "tree",
columns: [
// columns config
],
data: dataset,
});
grid.expandAll();
Change log:
added in v6.3