This is a migrated thread and some comments may be shown as answers.

radSplitBar and collapse in IE

2 Answers 118 Views
Splitter
This is a migrated thread and some comments may be shown as answers.
Andreas Kaech
Top achievements
Rank 1
Andreas Kaech asked on 07 Nov 2007, 12:25 PM
Hi,
I translated a RadSplit page from RadControls to Prometheus.
In IE, when collapsing radSplitBar3 (see code below) the splitbar becomes too small for re-expanding.
Here is the code:

<head id="Head1" runat="server">
    <title>Test Splitter</title>
    <style type="text/css">
        html
        {
         height:100%;
        }
        body
        {
         height:100%;
         margin:0px;
         overflow:hidden;
         font: 10pt Arial,Helvetica,Sans-Serif;
        }
        form
        {
         height:100%;
        }
    </style>
</head>
<body scroll="no">
    <form id="form1" runat="server">
        <asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
        <telerik:RadSplitter ID="RadSplitter1" runat="server" Width="100%" Height="100%"
            Skin="Outlook" VisibleDuringInit="false" Orientation="Horizontal">
            <telerik:RadPane ID="paneCockpit" runat="server" Height="108" Scrolling="None">
            </telerik:RadPane>
            <telerik:RadSplitBar ID="RadSplitBar1" runat="server" EnableResize="false" CollapseMode="Forward" />
            <telerik:RadPane ID="paneBody" runat="server" Scrolling="None">
                <telerik:RadSplitter ID="RadSplitter3" runat="server" Skin="Outlook" Orientation="Vertical"
                    VisibleDuringInit="false">
                    <telerik:RadPane ID="paneTree" runat="server" Width="250" MinWidth="100" Scrolling="None">
                    </telerik:RadPane>
                    <telerik:RadSplitBar ID="RadSplitBar2" runat="server" CollapseMode="Forward" />
                    <telerik:RadPane ID="paneContentHolder" runat="server" Scrolling="None">
                        <telerik:RadSplitter ID="RadSplitter4" runat="server" Skin="Outlook" Orientation="Horizontal"
                            VisibleDuringInit="false">
                            <telerik:RadPane ID="paneContent" runat="server" Scrolling="None">
                            </telerik:RadPane>
                            <telerik:RadSplitBar ID="RadSplitBar3" runat="server" CollapseMode="Backward" />
                            <telerik:RadPane ID="paneSupplement" runat="server" Scrolling="None">
                            </telerik:RadPane>
                        </telerik:RadSplitter>
                    </telerik:RadPane>
                </telerik:RadSplitter>
            </telerik:RadPane>
        </telerik:RadSplitter>
    </form>
</body>
</html>

Thanks for testing and answering

2 Answers, 1 is accepted

Sort by
0
Sophy
Telerik team
answered on 07 Nov 2007, 02:29 PM
Hi Andreas Kaech,

Thank you for your feedback. We highly appreciate it.

The problem you experience is a shortcoming of RadSplitter "Prometheus" control. I already entered it in our bug tracker and we will do our best to fix it for one of the next updates of the control. Please, find your Telerik points updated.

To solve the problem as a workaround I suggest either setting ResizeWithParentPane="false" Width="100%" Height="100%" properties to RadSplitter4 or set BorderSize="0" to all splitters on the page and you will not experience the problem anymore.

Don't hesitate to contact us if you have other questions.

Best wishes,
Sophy
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Andreas Kaech
Top achievements
Rank 1
answered on 07 Nov 2007, 02:42 PM
Thanks for your quick reply.
There is no problem living with ' BorderSize="0" ' ;-)
Tags
Splitter
Asked by
Andreas Kaech
Top achievements
Rank 1
Answers by
Sophy
Telerik team
Andreas Kaech
Top achievements
Rank 1
Share this question
or