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
280
Default Size of Panes
posted

Is there a way in design mode (or even programmatically) to set the initial display width of a pane, they are defaulting to 50% of the width of the whole control and there doesn't seem to be an attribute on the pane that allows a "width".  Any help would be welcome

 

Parents
  • 10880
    Verified Answer
    posted

    The Size property off the Pane:

    <ig:WebSplitter ID="WebSplitter1" runat="server" Height="200px" Width="300px">

    <panes>

    <ig:SplitterPane runat="server" Size="50px">

    </ig:SplitterPane>

    <ig:SplitterPane runat="server">

    </ig:SplitterPane>

    </panes>

    </ig:WebSplitter>

Reply Children
No Data