Unplanned
Last Updated: 03 Jan 2017 20:46 by ADMIN
The compass is out of place when specific height is set to the dock and the window is made smaller than the docking height
Unplanned
Last Updated: 03 Jan 2017 20:46 by ADMIN
Unplanned
Last Updated: 19 Sep 2016 14:13 by ADMIN
Unplanned
Last Updated: 03 Jan 2017 20:48 by ADMIN
The default behavior is to set the pane as active one when is shown. Allow changing this behavior.
Unplanned
Last Updated: 07 May 2019 10:20 by ADMIN
Possible work-around of this problem:

private void RadDocking_ElementLoaded ( object sender, LayoutSerializationEventArgs e )
 {
     if ( e.AffectedElement is RadPaneGroup )
     {
         var PaneGroup = e.AffectedElement as RadPaneGroup;
         var Panes = PaneGroup.EnumeratePanes().ToList();
         var SelectedIndex = PaneGroup.SelectedIndex;

         for ( int Index = 0; Index < Panes.Count; Index++ )
         {
             if ( ( Panes[ Index ].IsHidden || !Panes[ Index ].IsPinned ) && Index <= SelectedIndex )
             {
                 SelectedIndex++;
             }
         }

         PaneGroup.SelectedIndex = SelectedIndex;
     }
 }
Completed
Last Updated: 12 Oct 2020 07:09 by ADMIN
Release LIB 2020.3.1005 (10/05/2020)
When a pane is unpinned, mouse over it in order to show. After that when the mouse is removed from the pane it flickers before the animation is started.
Declined
Last Updated: 23 Apr 2015 15:14 by ADMIN
Panes that are autohidden are cut if resized too much - this is due to limitation in WPF that popups should not cover more than 75% of the screen.
Declined
Last Updated: 05 Jan 2017 15:23 by ADMIN
Unplanned
Last Updated: 03 Jan 2017 21:05 by Piet
Return undocked pane to its previous docked state when double click on its Header.
Completed
Last Updated: 05 May 2017 01:41 by John
Unplanned
Last Updated: 03 Jan 2017 21:06 by ADMIN
With three split containers in one other and no document host resizing between the first and second containers causes the first and third containers to resize, instead of the first and second containers.
Unplanned
Last Updated: 11 Aug 2016 14:04 by ION TRADING SRL
Changing theme runtime when we have a floating RadPane, then dock it into one of the sides of an already docked RadPane and no splitter will show between them. Happens with implicit theming as well.
Completed
Last Updated: 11 Aug 2016 14:04 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: Docking
Type: Feature Request
4
Add overloads for LoadLayout and SaveLayout methods of the Docking control with parameter of type XElement instead of Stream. Change the Save/Load layout code to use LinqToXML instead of XmlReader and XmlWriter.
Unplanned
Last Updated: 11 Aug 2016 14:05 by Gianpaolo
Steps to reproduce:
1. Start the WPF Controls Example application on a terminal server
2. Select Docking example
3. Try to move a floating windows by dragging it with the mouse
4. The window will move for a split second, but stop moving after that. (It behaves as if the mouse button was released after the initial move)
Unplanned
Last Updated: 03 Jan 2017 20:24 by ADMIN
The DocumentHost RadPane support overflow scrolling and drop down menu similar to the DocumentHost in VisualStudio and RadTabControl. We would like this feature implemented for the non DocumentHost areas as well.
Unplanned
Last Updated: 03 Jan 2017 20:24 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: Docking
Type: Feature Request
4
Add better layout-related events for the Docking control like PreviewPaneStateChanged and improved the arguments of the PaneStateChanged event. Also add events for resizing of a SplitContainer, moving a ToolWindow, etc.
Completed
Last Updated: 10 Sep 2020 13:14 by ADMIN
Release R3 2020
ADMIN
Created by: Telerik Admin
Comments: 0
Category: Docking
Type: Feature Request
9
Add shortcuts like:
- close a pane by mousewheel click on the tab
- close the active pane by keyboard shortcut (e.g. Ctrl + W)
- switch active pane by Ctrl + Tab
Unplanned
Last Updated: 03 Jan 2017 20:25 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: Docking
Type: Bug Report
3

			
Unplanned
Last Updated: 03 Jan 2017 20:26 by ADMIN
As a <role> I want <ability> so that <benefit>.
Declined
Last Updated: 11 Aug 2016 14:05 by ADMIN