I have a treeview with check box. When a check box is clicked, I need, client-side, to know the node level of the node just selected. exemple:
[ ] Node (level 1)
[x] Node (level 2)
[ ] Node (level 2)
[ ] Node (level 2)
[ ] Node (level 2)
[ ] Node (level 1)
[ ] Node (level 2)
[ ] Node (level 2)
[ ] Node (level 2)
I dont see any property in the event parameter that could tell the level of the node.
A viable workaround would be to add, server side, an attribute to the node to indicate the level (for exemple data-level="1").