Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
335
PostBack options
posted

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

Parents
No Data
Reply
  • 12679
    Suggested Answer
    posted

    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.

Children