Hi,
- I have a tree panel in which I want child nodes on demand.
- I have fetched root nodes first and set webix_kids property to true.
- When I expand first node then there is a call to the server with node’s id, which is perfect.
- The issue is when I expand the node second time there are two calls to the server.
- Consider this case study:
- I have 4 root nodes say P1, P2, P3, P4.
- I have expanded P1, then P1’s id is sent back to the server.
- Then, I have expanded P2, then first call to the server is with P1’s id and then second call will be with P2’s id.
- Now when I am expanding P4, then again there are two calls to the server, first with P1’s id and second with P4’s id.
- Need help in this issue.