Question

I am trying to catch an event on a treeview with ondemand loading. The event I want to capture is when I manually add a node. What happens right now is after adding a node, the treeview makes a request to the server for children of the parent i am adding to (which I ignore to avoid duplication issues). However, I do not get any events once the node is added. I get an event (requestEnd) right BEFORE the node is added visually but none after. I thought the expand event would be thrown as well, but i am not getting that either. Is there anything I can hook into to get that event?

Was it helpful?

Solution

The dataBound event should be thrown when new node is added to the Treeview.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top