Announcement
Collapse
No announcement yet.
X
-
What you're seeing is expected behavior. The TreeGrid is configured with loadDataOnDemand, so each fetch only returns the immediate children of the node being fetched. Since we don't know whether a node has any children before fetching, a fetch occurs for each leaf ... and returns no data.
That said, we'll consider making some changes to the sample to reduce the amount of fetching.
Comment