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
739
Page loading twice when new tab selected
posted

I just switched from the old tab control and I am having this problem.  I have a WebTab and on each tab I have either a WebDataGrid or an UltraWebGrid.  When the user clicks a tab, the grid in that tab should load.  It works except that when I change tabs, I get two async postbacks.  I can't figure out why this is happening.   The WebTab has the following options:

 

        <ig:WebTab ID="WebTab1" runat="server" Height="" Width="100%"
            onselectedindexchanged="WebTab1_SelectedIndexChanged"
            onprerender="WebTab1_PreRender">

        ...

                    <AutoPostBackFlags SelectedIndexChanged="Async" />
            <PostBackOptions EnableAjax="True" EnableLoadOnDemand="True" />

I'm stumped.