So I understand that whole RadMultiPage will be updated but I want to make this scenario. Please help me out how should I implement this.?
I have a 2 tabs Tab1, Tab2, Tab3. Now I am using the lazy load demo example to load Usercontrols on each tab click UC1 , UC2, UC3.
Now what I want is on UC2 if they change something I want UC1 content updated only when Tab1 is clicked(when information is requested) So what I have done is added Ajax to asp panel inside UC1 and added ajax setting and I use client side event to trigger button click inside the panel. Now I do not want Tab 2 content to be reloaded but alas it does. I have to preserve its client state since I have some client side data pulled in in tab 2.
How do I go about doing all this without resetting the client state of other pageviews?
When I trigger postback inside UC1 loading panel does not show up.
Overall, is there different approach I can use? I really want lazy loading though cause content is huge list of names.