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
Scrollbars on WebTab
posted

I have a webTab that has content pages loaded using aspx pages. I see that the webtab has a vertical scrollbar. Is there any way of turning that off?

  • 19693
    posted

    Hello,

    Let me know if you need further assistance regarding this.

  • 19693
    Suggested Answer
    posted

    Hello,

    You can set the Scrollbars property of the ContentTabItem to Hidden.

    For example:

            <ig:WebTab ID="WebTab1" runat="server" Height="200px" Width="300px">

                <Tabs>

                    <ig:ContentTabItem runat="server" Text="Tab 1" ContentUrl="./NumericEditorProvider.aspx"

                        ScrollBars="Hidden">

                    </ig:ContentTabItem>

                    <ig:ContentTabItem runat="server" Text="Tab 2" ContentUrl="./UltraWebGridExcel.aspx"

                        AutoSize="True">

                    </ig:ContentTabItem>

                </Tabs>

            </ig:WebTab>

    Let me know if you need further assistance.