Unplanned
Last Updated: 17 Feb 2020 15:08 by ADMIN
Endless Loading screen is shown over RadPane when the set_showContentDuringLoad(false) method before changing the contentUrl of a RadPane (which is already showing another external page).
 

Workaround: Set the ShowContentDuringLoad="false" property of the RadPane in the markup initially

 

Code to reproduce the bug:

        <script>
            function loadNewPage() {
                var contentPane = $find("RadPane2");
                contentPane.set_showContentDuringLoad(false);
                contentPane.set_contentUrl("newContentPage.aspx");
            }
        </script>
 
        <telerik:RadSplitter ID="RadSplitter1" runat="server" Width="100%" Orientation="Horizontal" Height="800px">
            <telerik:RadPane ID="RadPanel1" runat="server" Height="30px">
                <asp:Button Font-Italic="true" runat="server" Text="Load New Page" OnClientClick="loadNewPage(); return false;" />
            </telerik:RadPane>
            <telerik:RadPane ID="RadPane2" runat="server" ContentUrl="https://www.wikipedia.com">
            </telerik:RadPane>
        </telerik:RadSplitter>

Unplanned
Last Updated: 08 Jan 2021 09:36 by ADMIN
Created by: Chris
Comments: 0
Category: Splitter
Type: Feature Request
0
I would like the ability to add attributes to the 'RadPane' iframe server side, example problem:

Suppose you have a page with an embedded you-tube video, the full screen option will be disabled as the iframe attribute 'allowfullscreen' is missing, this can be worked around using the following technique: 

http://www.telerik.com/forums/youtube-full-screen

However if the initial page has the youtube video the page needs to be loaded twice as chrome only picks it up on the second page load (as its been set in javascript).

If this is not possible, I would recommend you copy the approach used on radwindow (http://www.telerik.com/forums/youtube-video-in-popup-window-full-screen) e.g. 

    function setIframeAttr(sender, args) {
        var frame = sender.get_contentFrame();
        if (frame) {
            frame.setAttribute("allowfullscreen", "true");
        }
    }

With a client side event "OnClientBeforeShow" (OnClientShow does not work in internet explorer).

This isn't a priority but since there is a hack involved with reloading the page it may be worthwhile making it easier.

Chris
Unplanned
Last Updated: 11 Jun 2021 14:11 by ADMIN
Created by: Tom
Comments: 0
Category: Splitter
Type: Feature Request
0
I have splitter tabs that show only images, no text--they are custom built so I get rotated text without worrying about browser compatibility.

I would like to use sprite images for the tabs rather than individual images.
Unplanned
Last Updated: 06 Jan 2015 15:40 by ADMIN
The tabs get hidden when a top oriented SlidingPane is docked inside a horizontal SlidingZone. The issue is reproducible when the resize mode of the parent Splitter is != AdjacentPane.

Steps to reproduce:
1. Run the following code:

        <div style="padding: 200px">
            <telerik:RadSplitter runat="server" ID="RadSplitter2" Orientation="Horizontal" ResizeMode="Proportional">
                <telerik:RadPane runat="Server" ID="radpane11" Height="20px" MaxWidth="980" Scrolling="None" BackColor="Green">
                    <telerik:RadSlidingZone ID="ListMetricsSlidingZone" runat="server" Height="25px" DockedPaneId="ListMetricsPane" SlideDirection="Top">
                        <telerik:RadSlidingPane ID="ListMetricsPane" Title="DEF" runat="server">
                            1111
                        </telerik:RadSlidingPane>
                        <telerik:RadSlidingPane ID="ListHistorySlidingPane1" Title="XYZ" Font-Size="X-Large" runat="server">
                            222
                        </telerik:RadSlidingPane>
                    </telerik:RadSlidingZone>
                </telerik:RadPane>
                <telerik:RadPane runat="Server" ID="radpane33" Scrolling="None">
                </telerik:RadPane>
            </telerik:RadSplitter>
        </div>

2. Undock and dock a sliding pane.

Expected: The tabs remains visible all the time (change the Splitters ResizeMode="AdjacentPane" for reference)