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
Copy file name to clipboardExpand all lines: components/treeview/data-bind.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -347,6 +347,8 @@ This lets you gather separate collections of data and/or use different models at
347
347
348
348
You don't have to provide all the data the treeview will render at once - the root nodes are sufficient for an initial display. You can then use the `OnExpand` event of the treeview to provide [hierarchical data](#hierarchical-data) to the node that was just expanded. Loading nodes on demand can improve the performance of your application by requesting less data at any given time.
349
349
350
+
The **example** below shows how you can handle load on demand in detail. It uses two different models for the two different [levels of data bindings](#multiple-level-bindings) it showcases. You do not have to use different models and/or different bindings.
351
+
350
352
>caption Load on Demand in a TreeView with sample handling of the various cases. Review the code comments for details.
0 commit comments