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
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:WebSplitter>
worked like a charm. I guess size is pretty intuitive when you consider it has to count for both horizontal and vertical orientation. thanks.
BTW, in code you use:
WebSplitter1.Panes[0].Size = Unit.Pixel(200);WebSplitter1.Panes[2].Size = Unit.Pixel(200);