Completed
Last Updated: 28 May 2014 13:05 by Jesse Dyck
This allows a linked SplitPanels to be dynamically expanded and collapsed by clicking on the splitter button, and resized by dragging the splitter.
Completed
Last Updated: 24 Feb 2020 13:35 by ADMIN
Release R1 2017 SP1
Completed
Last Updated: 28 May 2019 15:59 by ADMIN
Release R2 2019 SP1 (LIB 2019.2.603)
Use attached to reproduce. Move the splitter with the mouse and you will notice that is position is not correct when the mouse is released
Completed
Last Updated: 28 Jun 2016 10:23 by ADMIN
When you cut-copy RadSplitContainer containing two SplitPanels from one form to another, only the RadSplitContainer is pasted, but the SplitPanels are missing.
Completed
Last Updated: 10 Jun 2014 10:55 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: SplitContainer
Type: Feature Request
3
Add functionality to collapse and expand the split panels in RadSplitContainer by buttons positioned in the splitter area just like ASP.NET. See example here: 
http://demos.telerik.com/aspnet-ajax/splitter/examples/collapseexpand/defaultcs.aspx
Completed
Last Updated: 18 Oct 2021 15:43 by ADMIN
Release R3 2021 SP1
The Modifiers property should be visible in the properties window when a SplitPanel instance is selected. 

Workaround:

Manually change the modifier in the Designer.cs file to protected.
  
Completed
Last Updated: 27 Sep 2017 09:51 by ADMIN
Completed
Last Updated: 02 May 2019 16:28 by ADMIN
Release R2 2019
When you try to move the splitter on 125% DPI and release the mouse, the splitter is placed to another place.
Completed
Last Updated: 12 Jun 2014 06:22 by ADMIN
SplitPanel - there is no property Name in Visual Studio designer.
Completed
Last Updated: 06 Feb 2015 13:37 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: SplitContainer
Type: Bug Report
1
When you drop a RadSplitContainer in a RadDock ToolWindow, RadSplitContainer loses important options from its SmartTag's ActionMenu.
Similar behavior is obtained when you drag a RadSplitContainer from the ToolBox and drop it onto an empty RadDock.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
Let's have a RadSplitContainer on a form. This RadSplitContainer should contain two SplitPanels and one splitter. Change the color of the splitter using the Edit UI Elements dialog. Run the project and you will get IndexOutOfRangeException. However, if you cut and paste the designer code in the form_load, it will work correctly.
Completed
Last Updated: 26 Nov 2015 11:00 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: SplitContainer
Type: Bug Report
1
In design time when trying to copy-paste a RadSplitContainer, which contains a couple panels, it throws exception.

Steps to reproduce:
Add a RadSplitContainer to a form or user control.
Add a couple of panels to the container using the designer.
Press Ctrl+A to select all the controls on the form or user control.
Press Ctrl+C to copy them to the clipboard.
Create a new form or user control (this step isn't strictly necessary, but helps explain the issue).
Paste the controls on the clipboard into the new form or user control using Ctrl+V
Completed
Last Updated: 16 Nov 2012 05:31 by ADMIN
Applying Settings to the RadSplitContainer >> SplitContainerElement >> SplitterFill element affect only the first Splitter instance in the RadSplitContainer.
Completed
Last Updated: 31 Mar 2015 07:42 by ADMIN
Sometimes there are 3 or more dots on a splitter, but when changing the orientation then there is only one dot.
sometimes there are lines, but when switching to disabled these lines are much bigger. But only in one orientation.
Completed
Last Updated: 02 Nov 2015 12:20 by ADMIN
To reproduce:
- Set the splitter size to 40.
- Drag the splitter without releasing the mouse.
- The mouse pointer is in the beginning of the splitter, but it should be in its center.

Completed
Last Updated: 01 Nov 2017 13:06 by ADMIN
Please refer to the attached sample project. Double click the middle splitter in the horizontal split container.

Workaround: manually collapse the desired split panel:

private void Form1_Load(object sender, EventArgs e)
{
    this.radSplitContainer3.PanelCollapsing += radSplitContainer3_PanelCollapsing;
    foreach (SplitterElement s in this.radSplitContainer3.Splitters)
    {
        s.DoubleClick += s_DoubleClick;
    }
}

private void s_DoubleClick(object sender, EventArgs e)
{
    SplitterElement s = sender as SplitterElement;
    ((SplitPanel)s.RightNode).Collapsed = true;
}
Completed
Last Updated: 07 Feb 2017 06:48 by ADMIN
Unable to cast object of type 'System.EventArgs' to type 'System.Windows.Forms.MouseEventArgs'.

Workaround: use the SpliPanel.Collapsed property to control whether the split panel is expanded or collapsed.
Completed
Last Updated: 27 Oct 2017 10:02 by ADMIN
How to reproduce:  check the attached video

Workaround: Only split panels can be added to RadSplitContainer,  so add a panel first to the control before using the document outline
Completed
Last Updated: 19 Nov 2018 10:26 by ADMIN
ADMIN
Created by: Hristo
Comments: 1
Category: SplitContainer
Type: Feature Request
1
The end user should be able to specify what Cursor to be used while resizing a panel.

Currently this can be achieved using the custom control below:
public class MyRadSplitContainer : RadSplitContainer
{
    private bool isResizing;
 
    public override string ThemeClassName
    {
        get
        {
            return typeof(RadSplitContainer).FullName;
        }
    }
 
    protected override void OnMouseDown(MouseEventArgs e)
    {
        if (e.Button == MouseButtons.Left && this.ContentRectangle.Contains(e.Location))
        {
            SplitterElement splitter = GetSplitterElementAtPoint(e.Location);
            if (splitter != null && !splitter.Fixed)
            {
                this.isResizing = true;
            }
 
            base.OnMouseDown(e);
        }
    }
 
    protected override void OnMouseUp(MouseEventArgs e)
    {
        base.OnMouseUp(e);
 
        this.isResizing = false;
    }
 
    public override Cursor Cursor
    {
        get
        {
            Cursor cursor = base.Cursor;
            if (this.isResizing && cursor == Cursors.SizeWE)
            {
                cursor = Cursors.VSplit;
            }
            else if (this.isResizing && cursor == Cursors.SizeNS)
            {
                cursor = Cursors.HSplit;
            }
 
            return cursor;
        }
        set
        {
            if (value == Cursors.VSplit)
            {
                value = Cursors.SizeWE;
            }
            else if (value == Cursors.HSplit)
            {
                value = Cursors.SizeNS;
            }
 
            base.Cursor = value;
        }
    }
}
Completed
Last Updated: 05 Jul 2016 11:18 by ADMIN
To reproduce:
splitPanel1.SizeInfo.SizeMode = Telerik.WinControls.UI.Docking.SplitPanelSizeMode.Absolute;
splitPanel1.SizeInfo.AbsoluteSize = new Size(300, this.radSplitContainer1.Height);
splitPanel1.SizeInfo.MinimumSize = new Size(80, 0);

radSplitContainer1.UseSplitterButtons = true;
radSplitContainer1.EnableCollapsing = true;

- Start the application and collapse the panel with the button.
- The panel is collapsed, but cannot be expanded to its previous position.

1 2