ComponentOne Wijmo Open for Juice UI
Wijmo Open for Juice UI Extender Controls / WijSuperPanel / WijSuperPanel Task-Based Help / Hiding Vertical Scrolling
In This Topic
    Hiding Vertical Scrolling
    In This Topic

    You can hide vertical scrolling by setting the ScrollBarVisibility property to Hidden.

    This topic shows how to modify the ScrollBarVisibility property in Design view and in Source view.

    Hiding Vertical Scrolling in Design View:

    To hide vertical scrolling in design view, follow these steps:

    1. Select View | Properties Window in the Visual Studio menu.
    2. Click the drop-down list at the top of the Properties window and select Panel1_C1SuperPanel.
    3. Expand the Vscroller node and set the ScrollBarVisibility property to Hidden.

    Hiding Vertical Scrolling in Source View:

    To hide vertical scrolling on the superpanel, click the source tab and add the following code in your source file:

    <cc1:WijSuperPanel ID="Panel1_WijSuperPanel" runat="server"
    
                KeyboardSupport="False" TargetControlID="Panel1">
    
                <VScroller ScrollBarVisibility="Hidden">
    
                </VScroller>
    
                <resizableoptions handles="All"
    
                    helper="ui-widget-content wijmo-wijsuperpanel-helper">
    
                </resizableoptions>
    
    </cc1:WijSuperPanel>