You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To reset the TreeView's state after running **createChildren**, modify or clear [items](/Documentation/ApiReference/UI_Components/dxTreeView/Configuration/items/) array:
150
+
151
+
const items = treeViewInstance.option("items");
152
+
// Make necessary changes to items
153
+
treeViewInstance.option("items", items);
154
+
155
+
// or
156
+
157
+
treeViewInstance.option("items", []);
158
+
159
+
[/note]
160
+
147
161
#####See Also#####
148
162
-[Enhance Performance on Large Datasets](/concepts/05%20UI%20Components/TreeView/32%20Enhance%20Performance%20on%20Large%20Datasets.md'/Documentation/Guide/UI_Components/TreeView/Enhance_Performance_on_Large_Datasets/')
0 commit comments