Hi,
I am using a RadSplitter with Orientation="Horizontal" FullScreenMode="True" LiveResize="True".
I have put 2 RadPane with 1 RadSplitBar, 1st pane locked.
In the 2nd RadPane, I have put another RadSplitter with Orientation="Vertical" FullScreenMode="True" LiveResize="True"
with 2 RadPane, 2nd pane has fixed width.
When collapsing last pane, the bottom pane of first RadSplitter shows a horizontal scrollbar.
It seams that the inner RadSplitter grows of 1px when collapsing.
Here is the code I am using :
I am using a RadSplitter with Orientation="Horizontal" FullScreenMode="True" LiveResize="True".
I have put 2 RadPane with 1 RadSplitBar, 1st pane locked.
In the 2nd RadPane, I have put another RadSplitter with Orientation="Vertical" FullScreenMode="True" LiveResize="True"
with 2 RadPane, 2nd pane has fixed width.
When collapsing last pane, the bottom pane of first RadSplitter shows a horizontal scrollbar.
It seams that the inner RadSplitter grows of 1px when collapsing.
Here is the code I am using :
<form id="form1" runat="server"> |
<ajaxToolkit:ToolkitScriptManager ID="sm" runat="server" /> |
<telerik:RadSplitter ID="globalsplit" runat="server" Orientation="Horizontal" FullScreenMode="True" LiveResize="True"> |
<telerik:RadPane ID="globaltoolbar" runat="server" Locked="true"> |
<telerik:RadToolBar ID="toolbar" runat="server"> |
<Items> |
<telerik:RadToolBarButton Text="Item 1" /> |
<telerik:RadToolBarButton IsSeparator="true" /> |
<telerik:RadToolBarButton Text="Item 2" /> |
</Items> |
</telerik:RadToolBar> |
</telerik:RadPane> |
<telerik:RadSplitBar ID="split1" runat="server" CollapseMode="None" /> |
<telerik:RadPane ID="mainpan" runat="server"> |
<telerik:RadSplitter ID="mainSplit" runat="server" Orientation="Vertical" |
FullScreenMode="True" LiveResize="True"> |
<telerik:RadPane ID="contentPane" runat="server"> |
<p>Main place</p> |
</telerik:RadPane> |
<telerik:RadSplitBar ID="mainSplitBar" runat="server" CollapseMode="Backward" /> |
<telerik:RadPane ID="schedulePan" runat="server" Width="260px" MinWidth="260" MaxWidth="260"> |
[Scheduler] |
</telerik:RadPane> |
</telerik:RadSplitter> |
</telerik:RadPane> |
</telerik:RadSplitter> |
</form> |