Hi pushp_aspnet,
Not quite good at javascript..Can you modify your script "function OnTreeClick(evt)"? What I needed is when I check a node, all nodes (parent) above are checked and no child nodes below are checked including siblings on same level, and when I unchecked a node, no all parent node above is unchecked, only all child nodes below are unchecked...
Sample Data: (Item+<number> is for references only)
Item1 Parent Node 1
Item2 Child Node 1
Item3 Sub-Child Node 1
Item4 Sub-Sub Child Node 1
Item5 Sub-Sub Child Node 2
Item6 Sub-Child Node 2
Item7 Parent Node 2
Item8 Child Node 1
Item9 Sub-Child Node 1
Case 1: Checking a node
If I checked Item4 "Sub-Sub Child Node 1", Item 5,7,8,9 are Not checked, but from Item1 to Item4 and Item 6 are all checked.
Case 2: Unchecking a Node
If I unchecked Item3, in the previously checked Items 1,2,3,4 and 6, only Item 3 and 4 are unchecked, the rest remain checked
Thanks in advanced.