Jacques Woolston
Top achievements
Rank 1
Jacques Woolston
asked on 06 Sep 2007, 02:05 PM
Hi,
I have some performance issues with RAD Ajax and am after some advice of how I can get better performance out of my app by better using my RAD controls and RAD ajax... I currently have a RAD tab strip across the top of my page containing 6 tabs each tab containing many controls and sometimes a lot of data...
I'm after a way of only posting back partial data and doing partial updates to the page but still using the RAD tab strip and reducing the amount of data passed back and forth on each AJAX request..
Any help appreciated.
I have some performance issues with RAD Ajax and am after some advice of how I can get better performance out of my app by better using my RAD controls and RAD ajax... I currently have a RAD tab strip across the top of my page containing 6 tabs each tab containing many controls and sometimes a lot of data...
I'm after a way of only posting back partial data and doing partial updates to the page but still using the RAD tab strip and reducing the amount of data passed back and forth on each AJAX request..
Any help appreciated.
6 Answers, 1 is accepted
0
Jacques Woolston
Top achievements
Rank 1
answered on 06 Sep 2007, 02:09 PM
I've just done a little more testing, to give you an idea of my perfromance I'm getting a response back from the server which is 104Kb and it's taking 11344ms from postback to finish. Not great!
0
Jacques Woolston
Top achievements
Rank 1
answered on 06 Sep 2007, 02:50 PM
Would AJAXifying the tabstrip and making all controls.visible=false which are not in the active tab make my page run faster?
0
Hi Jacques,
You have two options:
All the best,
Steve
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
You have two options:
- set the RenderSelectedPageOnly property of the MultiPage control to true. This will render only the active (selected) pageview and the others will be requested on TabClick, which you can handle by ajax.
- Remove the MultiPage control and use standard asp:Panel in which you are loading corresponding data from user controls dependent on the Tab clicked.
All the best,
Steve
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0
Jim
Top achievements
Rank 1
answered on 20 Sep 2007, 11:05 PM
Hi,
We ran into this issue a while ago. What we did was initially loaded only the first tab's data, and then on the first tab click only we did a postback to the server to obtain more data for the page views. On subsequent tab clicks, it was all handled in javascript. I created a sample project a while ago, but I'm not sure how to post it in here.
Telerik, can you assist me with posting that sample project?
We ran into this issue a while ago. What we did was initially loaded only the first tab's data, and then on the first tab click only we did a postback to the server to obtain more data for the page views. On subsequent tab clicks, it was all handled in javascript. I created a sample project a while ago, but I'm not sure how to post it in here.
Telerik, can you assist me with posting that sample project?
0
Hello Jim,
Please open a support ticket and add the attachment there, with corresponding explanation of how to proceed and what steps to follow. Also have you tried any of my previous suggestions and did they help?
Greetings,
Steve
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
Please open a support ticket and add the attachment there, with corresponding explanation of how to proceed and what steps to follow. Also have you tried any of my previous suggestions and did they help?
Greetings,
Steve
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0
Jacques Woolston
Top achievements
Rank 1
answered on 29 Sep 2007, 02:09 PM
Hi,
I have set RenderSelectedPageOnly to true and this solved my issue initaly but now I have page validation issues across the tabs, please see thread: http://www.telerik.com/community/forums/thread/b311D-baadck.aspx
If I use option 2, would this solve both of my issues? Also I'd be interesed in seeing the sample project Jim has created if this solves the problem.
Thanks
I have set RenderSelectedPageOnly to true and this solved my issue initaly but now I have page validation issues across the tabs, please see thread: http://www.telerik.com/community/forums/thread/b311D-baadck.aspx
If I use option 2, would this solve both of my issues? Also I'd be interesed in seeing the sample project Jim has created if this solves the problem.
Thanks