Hi all,
I have a WebTab control where the tab content is set by the ContentURL. Whenever a user clicks on a tab, I want to make sure that there is a full post back. What combinations of postback properties do I need to set?
Thanks,
Jennifer
Hello sseelam,
You should be able to achieve this as set AutoPostBackFlags-SelectionChanged = true like this:
<ig:WebTab ID="WebTab1" runat="server"
Height="200px" Width="300px" AutoPostBackFlags-SelectedIndexChanged="On"> <Tabs> <ig:ContentTabItem runat="server" Text="Tab 1"> </ig:ContentTabItem> <ig:ContentTabItem runat="server" Text="Tab 2"> </ig:ContentTabItem> </Tabs> </ig:WebTab>
Hope this helps.
Seems like I also needed to add the following options:
<PostBackOptions EnableLoadOnDemandViewState="False" EnableLoadOnDemand="True" EnableReloadingUnselectedTab="True" />
Hi,
I guess you solve the issue. Is this correct?
Thanks
Yes