I have a strange behaviour of a splitter with two panes. The structure of my master page is:
<div class="size-wide main-container"> <telerik:RadSplitter ID="RadSplitterMain" runat="server" Orientation="Vertical" Width="100%" Height="100%" LiveResize="false" ResizeMode="Proportional">
<telerik:RadPane ID="RadPaneMenu" runat="server" MinWidth="0" MaxWidth="250" Width="250" Scrolling="X">
<div class="menu-left">
<wpc:wpcMenu ID="Menu" runat="server" />
</div>
</telerik:RadPane>
<telerik:RadSplitBar ID="RadSplitBarMain" runat="server" CollapseMode="Forward">
</telerik:RadSplitBar>
<telerik:RadPane ID="RadPaneContent" runat="server" ShowContentDuringLoad="false" Width="100%" Height="100%">
<div>
<asp:ContentPlaceHolder ID="MainContent" runat="server">
</asp:ContentPlaceHolder>
</div>
</telerik:RadPane>
</telerik:RadSplitter>
</div>
When the page load, I have the right part of the splitter, the RadPaneContent for main content, that is visualized for an instant very little, with the scroll bar visible and the page sizes that is not maximized, but it's very little both in width and heigth.
After one second the size of the pane is rendering good, but for an instant I saw the pane that is not opened and it's very small, with the scroll bars visibile, close to the splitt bar.
Is this behaviour due to the risizemode or some other attribute that I have to set on the splitter / Pane controls ?
In the Master page I have also an header over and a Footer under the main div.
Please let me Know it is possibile to fix this problem. I'm not able to fix this problem of rendering. This happens in all browser.
Kind Regards.
Vittorio Morellini