Hello!
Could you please help me with a problem?
I have a DataGrid
that displays several columns. One of column has tree-like structure. Due to the large amount of data, I'm using lazy loading — that is, loading child nodes on demand when a parent node is expanded.
What I need is to open the component with a specific node selected. I tried traversing the path from the root to the target node, expanding each node along the way using ExpandRow
, and then selecting the final node with SelectRow
.
This approach worked only for the first level of nesting: the root node expanded correctly and displayed its children, but when trying to expand the child node to load its own children, nothing happened — no errors and no data.
Maybe I’m misusing the component. Could you please advise how to properly implement this behavior?