ComponentOne Wijmo Open for Juice UI
Wijmo Open for Juice UI Extender Controls / WijSuperPanel / WijSuperPanel Task-Based Help / Resizing the SuperPanel
In This Topic
    Resizing the SuperPanel
    In This Topic

    You can resize the SuperPanel at run time when you set the AllowResize property to True.

    Setting the AllowResize Property in Design View:

    To set the AllowResize property 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. Set the AllowResize property to True.

    Setting the AllowResize Property in Source View:

    To set the AllowResize property in source view, click the source tab and add the following code in your source file:

    <asp:Panel ID="Panel1" runat="server"  Height="15px" Width="180px" DropdownHeight="500"
    
                DropdownWidth="400">
    
    </asp:Panel>
    
    <cc1:WijSuperPanel ID="Panel1_WijSuperPanel" runat="server"
    
                AllowResize="True" KeyboardSupport="False" TargetControlID="Panel1">
    
                <VScroller ScrollBarVisibility="Hidden">
    
                </VScroller>
    
                <resizableoptions handles="All"
    
                    helper="ui-widget-content wijmo-wijsuperpanel-helper">
    
                </resizableoptions>
    
    </cc1:WijSuperPanel>