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
Completed
Last Updated: 04 Oct 2019 10:28 by ADMIN
Release LIB 2019.3.1007
The CustomElementLoading event can't be canceled without creating a new instance of the custom element.

As a workaround in the CustomElementLoading event handler you can call the SetAffectedElement() with creating DependencyObject and then Cancel the event by setting the Cancel property.
private void RadDockingOnCustomElementLoading(object sender, LayoutSerializationCustomLoadingEventArgs e)
{
    if (e.CustomElementTypeName == "MyRadPane")
    {
        e.SetAffectedElement(new DependencyObject());
        e.Cancel = true;              
    }
}
Unplanned
Last Updated: 29 Apr 2024 13:33 by Erica
Docking A1 is nested in parent Dockin A, they share equal DragDropGroup Name so that drag drop is enabled between them. Droping pane from A1 to center of A's  dragdrop compass, then switching panes results in unexpected opened tool window. Dragging this window results in NullReferenceException.
Completed
Last Updated: 01 Sep 2014 06:14 by Katie
This only happens whenever the Panes are docked one above another in the DocumentHost.
Declined
Last Updated: 14 Jan 2015 16:08 by ADMIN
Completed
Last Updated: 25 May 2016 08:20 by sho
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: 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.
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: 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: 09 Apr 2020 14:58 by ADMIN
Release LIB 2020.1.406 (04/06/2020)

Application theme:

StyleManager.ApplicationTheme = new CrystalTheme();

Docking theme:

<telerik:RadDocking Grid.Row="2" telerik:StyleManager.Theme="Office2016">
	<telerik:RadDocking.DocumentHost >
		<telerik:RadSplitContainer>
			<telerik:RadPaneGroup>
				<telerik:RadPane Header="Description">
					<TextBlock TextWrapping="Wrap" Text="On the Documents tab above press Ctrl + Mouse Left button to display the Popup Menu. You can use the same combination on every tab."/>
				</telerik:RadPane>
			</telerik:RadPaneGroup>
		</telerik:RadSplitContainer>
	</telerik:RadDocking.DocumentHost>
	<telerik:RadSplitContainer InitialPosition="DockedBottom">
		<telerik:RadPaneGroup>
			<telerik:RadPane Header="NonDraggable">
				<TextBlock TextWrapping="Wrap" Text="This pane cannot be dragged, because it has its property CanFloat set 'False'."/>
			</telerik:RadPane>
		</telerik:RadPaneGroup>
	</telerik:RadSplitContainer>
</telerik:RadDocking>

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.
4 5 6 7 8 9