Declined
Last Updated: 26 Jul 2016 10:51 by ADMIN
ADMIN
Created by: Vessy
Comments: 2
Category: Splitter
Type: Feature Request
1
Add ability to add border decoration to a RadPane/RadSplitter, without breaking the size of the control.
Declined
Last Updated: 21 Jul 2016 15:06 by ADMIN
ADMIN
Created by: Vessy
Comments: 2
Category: Splitter
Type: Feature Request
1
Add ability to add margin/padding to a Radpane, without breaking the size of the control.
Completed
Last Updated: 24 Dec 2015 08:44 by ADMIN
ADMIN
Created by: Vessy
Comments: 0
Category: Splitter
Type: Feature Request
1
If the title of a SlidingPane is more than 22px it gets truncated in vertically oriented Splitter.


The issue is reproducible in Edge

http://demos.telerik.com/aspnet-ajax/splitter/examples/sp_firstlook/defaultcs.aspx

Workaround:
 <style type="text/css">

        .rspPaneTabContainer{
            height: initial !important;
        }

    </style>
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: 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