Hello. I have webdatatree on the page, and few updatepanels.
The tree is outside of panels, and has no events triggered to any of update panels. Update panels have the overriden OnLoad method.
The tree nodes are loaded on demand. And when I'm expanding some node, both update panels' load events are fired! But as I said, tree is outside of panels, and not triggered to panels. Why is this happening, is that a normal behavior??
Hi,
Let me know if you have any questions with this matter.
Thanks.
Hello,
This is expected behavior.
For postbacks, the page life cycle is the same during a partial-page postback (as when you use an UpdatePanel control) as it is during a full-page postback.
More info about page life cycle :
http://msdn.microsoft.com/en-us/library/ms178472.aspx
Hope this helps