Completed
Last Updated: 27 Feb 2014 10:55 by ADMIN
ADMIN
Created by: Vessy
Comments: 0
Category: Splitter
Type: Bug Report
0
When a RadPane with not configured fixed size is locked its size is not calculated properly (and the size of all its sibling free-sized panes).The issue can be reproduced with the following code in Firefox (both in horizontally or vertically oriented Splitter):

    <telerik:RadSplitter ID="TestSplitter" runat="server" Width="100%" Height="100%"
        Orientation="Horizontal">
        <telerik:RadPane ID="RadPane1" runat="server"
            Locked="true">
        </telerik:RadPane>
        <telerik:RadPane ID="RadPane2" runat="server">
        </telerik:RadPane>
        <telerik:RadPane ID="RadPane3" runat="server">
        </telerik:RadPane>
    </telerik:RadSplitter>

These overrides can be used as a temporary workaround:

        Telerik.Web.UI.SplitterPaneBase.prototype.get_height = function () {
            return this._height === "" ? 0 : parseInt(this._height);
        }
        Telerik.Web.UI.SplitterPaneBase.prototype.get_width = function () {
            return this._width === "" ? 0 : parseInt(this._width);
        }
Completed
Last Updated: 04 Nov 2013 10:38 by ADMIN
The HTML5 related changes in the RadSplitter have specific selectors that influence the content inside.
Completed
Last Updated: 04 Sep 2013 12:09 by ADMIN
When RadSplitter is declared in a page with no Doctype the RadSlidingPane stops responding in IE and the layout looks broken when docking/undocking.
Completed
Last Updated: 06 Aug 2013 15:51 by ADMIN
When the content of a RadPane is set through its ContentURL property, the RadPane cannot be scrolled in order to how its full content in IPAD.

The issue could be reproduced here: http://demos.telerik.com/aspnet-ajax/splitter/examples/externalcontentloading/defaultcs.aspx
1 2