Does anyone know why RadTreeView would take 1.5 seconds to postback in a page, when regular TreeView takes .5 seconds? This doesn't happen in a simple demo project, just in my application page. What might be in my page that would cause postback to get delayed?
Thanks!
Andrew
2 Answers, 1 is accepted
0
Atanas Korchev
Telerik team
answered on 12 Nov 2008, 04:26 PM
Hi Andrew,
Normally there shouldn't be any delay between postbacks. Does the delay occur on the client side (browser "hangs" for some time and then postbacks) or on the server side (page postbacks but it takes lots of time to load it back)? How many nodes does your treeview have? Also are you using load on demand and PersistLoadOnDemandNodes="true"?
Regards,
Albert
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
I actually get 2 page_load events on the server, and 2 nodeclick events, when clicking on a node. Nodecheck event in this same tree does not have this problem. The tree only has a few nodes (5). I'm not using load on demand. I am NOT subscribing to the nodeclick event twice. Any ideas?