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
4110
Can't get my WebTab to scroll
posted

Here is the contents of a basic WebTab control. As a scrolling test, I am filling lblTest.Text with gibberish to be sure scrolling shows up, however, it doesn't scroll, it just wraps. Can someone tell what I am not doing? Thanks!

<ig:WebTab ID="igTab" runat="server" Height="300px" Width="650px" StyleSetName="Nautilus"
StyleSetPath="~\ig_res\" EnableActivation="True" >
<Tabs>
<ig:ContentTabItem runat="server" Text="Tab 1" ScrollBars="Visible"  >
<Template>                       
<br />
<asp:Label ID="lblTest" runat="server" Text=""></asp:Label>

</Template>
</ig:ContentTabItem>
<ig:ContentTabItem runat="server" Text="Tab 2">
<Template>
Static content on tab 2  

</Template>
</ig:ContentTabItem>
</Tabs>
<ContentPane>
<RoundedBackground Enabled="True" />
</ContentPane>
<PostBackOptions EnableLoadOnDemand="True" />
</ig:WebTab>