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
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>