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);
        }
Declined
Last Updated: 25 Jul 2014 13:32 by ADMIN
The height of a  free-sized RadPane is not calculated properly on layout mode change in Android devices. The issue is reproducible in Firefox for Android.
Completed
Last Updated: 13 Feb 2015 11:14 by ADMIN
ADMIN
Created by: Vessy
Comments: 0
Category: Splitter
Type: Bug Report
0
A JavaScript error is thrown when a Splitbar is dragged in IE11 Edge mode and resolution 2560x1080. The issue is reproducible only when the ScriptManager's EnableScriptCombine property is set to False.

Temporary workaround: Set the RadScriptManager's EnableScriptCombine property to "True"
Declined
Last Updated: 17 Feb 2015 13:41 by ADMIN
When a Splitter contains both RadPanes with size in percent and free-sized panes, the width of the fomer is calculated properly only after the initial loading and remains the same the the page is resized.

Steps to reproduce:
1.     <telerik:RadSplitter ID="RadSplitter1" runat="server" Width="100%">
            <telerik:RadPane ID="RadPane1" runat="server" Width="10%"></telerik:RadPane>
            <telerik:RadSplitBar ID="RadSplitbar1" runat="server" ></telerik:RadSplitBar>
            <telerik:RadPane ID="RadPane2" runat="server"></telerik:RadPane>
         </telerik:RadSplitter>

2. Resize the browser.

Result: the size of RadPane1 is not recalculated

Temporary workaround:
Set size in perncent to all RadPanes in the Splitter.
Completed
Last Updated: 14 Sep 2021 10:00 by ADMIN
Release Q2 2014
ADMIN
Created by: Vessy
Comments: 0
Category: Splitter
Type: Bug Report
0
The border of the splitbar disappears on hover. The issue is reproducible in IE - http://screencast.com/t/QfaZIZirSZfB
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: 10 Apr 2014 08:19 by ADMIN
When a Tab of a Vertically oriented Splitter have both title and icon, its height is not calculated properly (the height of the icon is not taken into account). The issue is reproducible in Chrome.

Screenshot: http://screencast.com/t/0aaMryaShXZe
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: 29 Sep 2015 10:13 by ADMIN
The scroll position of the radPanes is not pesisted after a postback (even if the PersistScrollPosition property of the Pane is set to "true").
Completed
Last Updated: 03 May 2016 13:38 by ADMIN
When a RadPanelBar (having have more than 1 level of nested items) is nested inside a SlidingPane, it cannot be scrolled after expanding in iOS.
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
Completed
Last Updated: 02 Sep 2015 15:07 by ADMIN
The border size of the RadPanes is always inherited by their parent Splitter's BorderSize, ragardless of the value set to the Splitter's PanesBorderSize property.

Completed
Last Updated: 13 Aug 2021 12:13 by ADMIN
ADMIN
Created by: Vessy
Comments: 1
Category: Splitter
Type: Bug Report
0
When a Sliding pane have to be resized over a RadPane, containing a heavy weight object (Silverlight, PDF, Flash, etc.) its size is not calculated properly.
1 2