Unplanned
Last Updated: 12 Jun 2023 13:21 by Martin Ivanov
Currently, if the RadPaneGroup contains only a single RadPane, its header is not displayed on the bottom of the control. Instead, you see it only in the Title area of the group.
Add mode that allows to keep the header of the pane at the bottom when there is only a single RadPane element.
Completed
Last Updated: 08 Apr 2024 14:24 by ADMIN
Release 2024.1.408

This happens because in the current version of Telerik, the IsTopmost of the ToolWindow that host the floating pane is set to True. That was needed for a related new functionality, but it brings a major behavioral change in the RadDocking control.

To work this around, you can subscribe to the ToolWindowCreated event of RadDocking and set the IsTopmost property of the creating ToolWindow to False.

private void RadDocking_ToolWindowCreated(object sender, Telerik.Windows.Controls.Docking.ElementCreatedEventArgs e)
{
    var window = (ToolWindow)e.CreatedElement;
    window.IsTopmost = false;
}

Unplanned
Last Updated: 03 Jan 2017 20:33 by ADMIN
Regions in panes content are not resolved when the pane is unpinned and collapsed. This happens only when you change the regions in runtime while the pane is unpinned and collapsed.
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.
Completed
Last Updated: 18 Apr 2016 06:12 by ADMIN
When a Pane is floated and added to a specific position in a PaneGroup saving the layout saves its position as last Pane in the group
Completed
Last Updated: 18 Mar 2014 09:11 by ADMIN
If the Background property of a RadPaneGroup is set in Windows8 and Office2013 themes it is disregarded
Unplanned
Last Updated: 04 Jul 2022 10:51 by Martin Ivanov
The CaptionHeight property of ToolWindow determines the height of the area where you can start dragging the window, starting from the top edge of the window. Currently, ToolWindow is using a fixed height based on the default title's content. However, the Title and TitleTemplate properties allow you to introduce a title with bigger height. In this case, if the title height is bigger than the default CaptionHeight, you cannot start dragging if the mouse is under the CaptionHeight's position.

Adjust the CaptionHeight dynamically, according to the actual title content height.
Completed
Last Updated: 24 Mar 2014 08:41 by ADMIN
If the mouse is above an AutoHideArea while the theme of the control is changing an NullReferenceException is thrown.
Completed
Last Updated: 24 Mar 2014 08:42 by ADMIN
ADMIN
Created by: George
Comments: 0
Category: Docking
Type: Feature Request
0

			
Won't Fix
Last Updated: 31 May 2016 08:37 by ADMIN
ADMIN
Created by: George
Comments: 1
Category: Docking
Type: Bug Report
0
The Docking control must be placed inside DataTemplate.

Also it is possible to reproduce this behavior by executing this process:
  - Load a previously saved layout into the RadDocking control (note that the PanesSource is not set)
  - Set a PanesSource collection. Here the PanesSource objects are correctly added to the control but the previous items from the loaded Layout are not removed.
Unplanned
Last Updated: 03 Jan 2017 20:57 by ADMIN
The RestrictedAreaMargin should be used as a starting point for the position when a ToolWindow is being maximized.
Completed
Last Updated: 20 Oct 2021 07:13 by ADMIN
Release LIB 2021.3.1025 (25 Oct 2021)
Office2019 theme does not remove the ScrollViewerElement element when CanUserClose is set to False and the Visibility is set to Collapsed on a DocumentPane.
Won't Fix
Last Updated: 20 Jan 2016 13:38 by ADMIN
After certain expand/collapse of RadExpander that is placed inside a floating RadPane the DataContext of the RadExpander is lost
Completed
Last Updated: 30 May 2016 12:07 by ADMIN
ADMIN
Created by: George
Comments: 0
Category: Docking
Type: Bug Report
0
Changing the pane's state using context menu from floating to tabbed items leads to memory leak in MVVM scenario.

Available in LIB version 2016.2.530, it will be also available in the 2016 R2 SP1.
Completed
Last Updated: 17 May 2021 09:54 by ADMIN
Release LIB 2021.2.517
The dropdown menu in the DocumentHost throws a NullReferenceException in newer themes when it is opened.
Completed
Last Updated: 21 May 2021 06:39 by ADMIN
Release LIB 2021.2.525 (25/05/2021)
Created by: Joshua
Comments: 0
Category: Docking
Type: Bug Report
0
Instances of the NavigatorItemViewModel class stay in memory when using the DockingNavigator.
Completed
Last Updated: 25 Jun 2014 10:47 by Jax
Currently TabStripPlacement property is not stored on a RadPaneGroup as part of the xml when calling SaveLayout. The result is when this has been set to say "top", loading the same layout then causes all docked panes in the group to switch tab placement to the default of bottom - which is not the same as it was.
Completed
Last Updated: 25 May 2016 08:20 by sho