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
nested tabs and relative layout control inside
posted

I've got a weird problem, can't show a usercontrol that has some controls inside with a determined location by using relative positioning. Where the tab is nested inside another tab, the form can't show its controls, otherwise the render occurs normally.

i've tried changing the css of the UltraTab igtab_Control but without any result.

Can someone give me a help?

Thanks

  • 24497
    posted

    Hi marcomorais,

    You may try to use EnableRelativeLayout. Below is example:

       <igtab:UltraWebTab ID="UltraWebTab1" runat="server">
        <Tabs>
         <igtab:Tab Text="New Tab">
          <ContentPane EnableRelativeLayout="True">
          </ContentPane>
         </igtab:Tab>
         <igtab:Tab Text="New Tab">
         </igtab:Tab>
        </Tabs>
       </igtab:UltraWebTab>