Completed
Last Updated: 09 Mar 2020 08:49 by ADMIN
Release LIB 2020.1.309 (03/09/2020)
When a RadPaneGroup is not in the DocumentHost and it has only 1 RadPane, UI elements placed in that pane cannot be selected in the designer.
Completed
Last Updated: 15 Aug 2023 13:39 by ADMIN
Release LIB 2023.2.821 (21 Aug 2023)

When a RadSplitContainer with Orientation="Vertical" contains RadPaneGroup instances, resizing them causes a flicker when the ShowResizePreview property is set to False. This happens with the VisualStudio2019 theme.

For the time being, a possible workaround is to create a global Style with TargetType="RadPaneGroup" and set the Margin property to "0":

<Style TargetType="telerik:RadPaneGroup" BasedOn="{StaticResource RadPaneGroupStyle}">
    <Setter Property="Margin" Value="0"/>
</Style>

Completed
Last Updated: 24 Aug 2020 10:56 by ADMIN
Release LIB 2020.2.824
RichTextBox, GridView, TreeListView and ScheduleView handle [Ctrl + Tab] the same way as [Tab] and this way when they are inside Docking, the Navigator cannot open. These controls should not handle the Ctrl + Tab.  
Completed
Last Updated: 06 Nov 2020 13:59 by ADMIN
Release LIB 2020.3.1109 (11/09/2020)
The ToolWindows of the RadDocking control remain open even if the application is minimized when a remote connection is restored.
Completed
Last Updated: 13 Oct 2020 14:49 by ADMIN
Release R3 2020 SP1
Setting CloseTabsOnMouseMiddleButtonDown on the RadPaneGroup to true will not respect CanUserClose property of RadPane set to false.
Completed
Last Updated: 13 Nov 2020 18:09 by ADMIN
Release LIB 2020.3.16
When the CloseTabsOnMouseMiddleButtonDown property is set to True and the user clicks on an unselected tab, it will be not closed, the selected one is closed instead. 
Completed
Last Updated: 01 Feb 2021 11:11 by ADMIN
Release LIB 2021.1.201 (2/1/2021)
Nested Docking can't be found by UI Automation framework.
Completed
Last Updated: 01 Oct 2021 10:44 by ADMIN
Release LIB 2021.3.1004 (4 Oct 2021)
An unpinned RadPane that is being resized starts shrinking after it passes a certain threshold. 
Completed
Last Updated: 25 Feb 2021 13:59 by ADMIN
Release LIB 2021.1.301 (1/03/2021)
The visual clue, which shows where a ToolWindow will be dropped within the RadPaneGroup is not shown.
Completed
Last Updated: 01 Jun 2022 13:04 by ADMIN
Release LIB 2022.2.606 (06 June 2022)
If the IsHidden property of a pane is set before the LoadLayout method is called and it also sets the IsHidden property of the pane, it is left in an invalid state  - with wrong visibility.
Completed
Last Updated: 30 Sep 2022 11:59 by ADMIN
Release LIB 2022.3.1003(3 Oct 2022)
Resizing a dynamically added group results in a change of other groups' sizes, if the original groups were previously resized as well.
Completed
Last Updated: 01 Jul 2021 14:18 by ADMIN
Release LIB 2021.2.705 (5 Jul 2021)

Hello Support,

 

I have some hidden panes (see attachement). The Problem is that when I try to reorder and save the layout and reload it, the panes are not ordered as wished.

 

I there a way to provide it?

 

Best regards,

Frédéric Le Blay.

Completed
Last Updated: 29 Nov 2021 06:35 by ADMIN
Release R3 2021 SP
Wrong order of the elements in the xml produced when saving the layout.
Completed
Last Updated: 14 Dec 2015 15:05 by ADMIN
This also causes the initial DataContext to be left out in the memory.
Available in LIB version 2015.3.1214, it will be also available in the 2016 Q1 Release.
Completed
Last Updated: 14 Dec 2015 15:04 by ADMIN
Calling the LogicalTreeHelper.GetChildren() does not include the DocumentHost and its contents.
Available in LIB version 2015.3.1214, it will be also available in the 2016 Q1 Release.
Completed
Last Updated: 07 Nov 2016 15:02 by ADMIN
When the DropDownDisplayMode of the RadPaneGroup is set to Visible and that group is placed inside the DocumentHost calling the RemoveFromParent from a button places in the HeaderTemplate of the RadPane causes that RadPane instance to not be removed from the memory.

Available in LIB version 2016.3.1107, it will be also available in the 2017 R1 release.
Completed
Last Updated: 19 Jan 2023 14:50 by ADMIN
Loading the layout does not set the size of the ToolWindow created for a floating-only pane.
Completed
Last Updated: 07 Nov 2016 15:02 by ADMIN
Available in LIB version 2016.3.1107, it will be also available in the 2017 R1 release.
Completed
Last Updated: 31 Jul 2023 12:49 by ADMIN
Release LIB 2023.2.724 (24 Jul 2023)
 NullReferenceException when dragging a window outside the control (see the attached video).
Completed
Last Updated: 16 Oct 2017 10:44 by ADMIN
workaround:
add the following visual state to the DocumentHostTemplate of the RadPaneGroup:

<VisualStateManager.VisualStateGroups>
    <VisualStateGroup x:Name="DropDownDisplayStates">
        <VisualState x:Name="DropDownButtonCollapsed" />
        <VisualState x:Name="DropDownButtonVisible">
            <Storyboard>
                <ObjectAnimationUsingKeyFrames Storyboard.TargetName="DropDownButtonElement" Storyboard.TargetProperty="Visibility">
                    <DiscreteObjectKeyFrame KeyTime="0">
                        <DiscreteObjectKeyFrame.Value>
                            <Visibility>Visible</Visibility>
                        </DiscreteObjectKeyFrame.Value>
                    </DiscreteObjectKeyFrame>
                </ObjectAnimationUsingKeyFrames>
            </Storyboard>
        </VisualState>
    </VisualStateGroup>
</VisualStateManager.VisualStateGroups>

and remove the trigger targeting the drop down button.