Unplanned
Last Updated: 11 Aug 2016 14:04 by Adiel
Created by: Toni
Comments: 2
Category: Docking
Type: Feature Request
5
Any suitable workaround is welcome.
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;
     }
 }
Unplanned
Last Updated: 03 Jan 2017 21:05 by Piet
Return undocked pane to its previous docked state when double click on its Header.
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.
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.
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>.
Unplanned
Last Updated: 04 Aug 2016 14:58 by ADMIN
Place one RadPane in a RadPaneGroup. Bind IsHidden property of this RadPane, and set the default value to True. If you change it to False, the width of the AutoHide area is not set to the correct one.
Unplanned
Last Updated: 04 Jan 2017 07:33 by amine boussema
Currently the small arrow which is used to display the menu is not shown in the ToolWindow's header even when a single pane is shown in the window.
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.
Unplanned
Last Updated: 03 Jan 2017 20:35 by ADMIN
1 2 3 4 5