Hi,
In our application, we are loading a treeview where there is parent-child relationship
Structure is:
Node 1
Node 1.1
Node 1.1.1
Node 1.1.1.1
Node 1.1.1.2
Node 1.1.1.3
Node 1.2
Node 1.3
Node 1.3.1
Node 1.3.2
Node 2
Node 2.1
Node 2.1.1
Node 2.1.2
Node 2.1.3
Node 2.2
Node 3
We are using Load on Demand (Ajax binding) to load the children nodes on expanding a parent node.
Vidya
In our application, we are loading a treeview where there is parent-child relationship
Structure is:
Node 1
Node 1.1
Node 1.1.1
Node 1.1.1.1
Node 1.1.1.2
Node 1.1.1.3
Node 1.2
Node 1.3
Node 1.3.1
Node 1.3.2
Node 2
Node 2.1
Node 2.1.1
Node 2.1.2
Node 2.1.3
Node 2.2
Node 3
We are using Load on Demand (Ajax binding) to load the children nodes on expanding a parent node.
Step 1: Expand a parent node, child nodes will be loaded
Step2: Check the parent node, all the child nodes will be checked
Step 3: Now Collapse the parent node (Keep it checked) and expand again to load the child nodes.
Expect:
Child nodes should be checked
Actual:
Child Nodes are not checked
The checkboxes state is not maintained after collapsing a parent node and then expanding the same.
This is one of the critical functionalities in our application.
Please help.
Vidya