I´m using fuelux treeview to display a list , but I want expand all folders or nodes when page load.
I´m using fuelux.tree.min.js.
Below the code for load treeview:
$('#trvMembers').ace_tree({
dataSource: treeDataSource,
loadingHTML: '<div class="tree-loading"><i class="ace-icon fa fa-refresh fa-spin blue"></i></div>',
'open-icon': 'ace-icon tree-minus',
'close-icon': 'ace-icon tree-plus',
'selectable': true,
'selected-icon': null,
'unselected-icon': null
});
The questions is: is there any parameter or function to expand all folders when load page?