Rank: Newbie Groups: Member
Joined: 9/9/2011 Posts: 3
|
I am using EO Tabstrip with multipages. Each pageview has a user control added. SO there are 5 tabs items and I don't want to load all of them on page load. Instead the first tab can be loaded on page load and subsequents tabs on tab strip itemclick event. Is there anyway to stop loading all tabs on page load? I tried to add the user control inside <asp:panel> andbtried to hide panels (by .visible=false) on page load but it still loads all the tabs.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
It is possible to dynamically load each user control "on demand". However that is general ASP.NET programming issue that does not have anything to do with our product. So we consider it out of the scope of our support.
If you want to avoid dynamic loading, the easiest way for you is to separate each tab into a different page, then use a master page to host the TabStrip control. That way user will essentially switch in between five different pages TabPage1.aspx, TabPage2.aspx ...TabPage5.aspx. You will need to set each TabItem's NavigateUrl to different page Url if you use this solution.
Thanks!
|