Completed
Last Updated: 10 Mar 2014 10:43 by ADMIN
ADMIN
Created by: Georgi I. Georgiev
Comments: 0
Category: Dock
Type: Feature Request
1
Add the ability to programatically show AutoHidden window
Completed
Last Updated: 26 Feb 2014 13:57 by Jesse Dyck
ADMIN
Created by: Georgi
Comments: 1
Category: Dock
Type: Feature Request
6
When a floating window is hidden and RadDock layout is saved, the hidden window is saved in its Docked state and displayed as Docked when layout is loaded.
Completed
Last Updated: 24 Feb 2014 10:58 by Jesse Dyck
ADMIN
Created by: Georgi
Comments: 1
Category: Dock
Type: Feature Request
7
Visual Studio 2010 introduced the concept of document windows which behave like a regular tool window. Implement the same functionality within RadDock.
Declined
Last Updated: 20 Feb 2014 10:01 by ADMIN
The problem can be reproduced in some scenarios for other controls like RadGridView
Comment: the issue cannot be reproduced!
Declined
Last Updated: 20 Feb 2014 09:52 by Svetlin
When you set the Cancel property of the DockWindowCancelEventArgs in the ActiveWindowChanging event, the active window should not be changed.
Completed
Last Updated: 11 Feb 2014 16:22 by Jesse Dyck
ADMIN
Created by: Julian Benkov
Comments: 3
Category: Dock
Type: Feature Request
13
Visual Studio 2010 document window behavior
Completed
Last Updated: 11 Feb 2014 15:42 by ADMIN
If you dock several tool windows on the same position so that tabs show up and you double click the close button, all remaining docked windows will be made floating.
Completed
Last Updated: 11 Feb 2014 11:19 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: Dock
Type: Bug Report
0
Detected in RadDock using resizing of simple form with RadDock and one ToolWindow docked in bottom.
Completed
Last Updated: 15 Oct 2013 03:37 by ADMIN
To reproduce:
- Add 2 DockWindows and dock it Add about 10 controls in one of the windows. AutoHide them and show them one after another, you will notice that the old one is visible somewhere in the middle of the animation.
- Also you will notice that AutoHideWindowDisplayed and AutoHideWindowDisplaying events are fired twice.
Completed
Last Updated: 07 Oct 2013 06:00 by ADMIN
ADMIN
Created by: Georgi I. Georgiev
Comments: 0
Category: Dock
Type: Feature Request
0
Add the ability to easily turn on/off the DockingGuides
Completed
Last Updated: 24 Jul 2013 05:41 by ADMIN
To reproduce: Add a RadDock with toolwindow, add a webBrowser inside(must be IE10) and try to drag it.
Completed
Last Updated: 06 May 2013 03:37 by ADMIN
To reproduce, just load an invalid XML file:
            if (File.Exists("userDockState.xml"))
            {
                try
                {
                    radDock1.LoadFromXml("userDockState.xml");
                }
                catch (XmlException)
                {
                    radDock1.LoadFromXml("defaultDockState.xml");
                }
            }

Workaround:
 if (File.Exists("userDockState.xml"))
            {
                try
                {
                    radDock1.LoadFromXml("userDockState.xml");
                }
                catch (XmlException)
                {
                    radDock1.EndTransactionBlock();
                    radDock1.LoadFromXml("defaultDockState.xml");
                }
            }
Completed
Last Updated: 04 Apr 2013 03:23 by ADMIN
RadDock - when loading layout, the control reads the stream from the current position instead from the beginning of it. This lead to exception "Root element is missing".

Steps to reproduce:

Dim strmDock As New MemoryStream

RadDock1.SaveToXml(strmDock)
RadDock1.LoadFromXml(strmDock)


Work around:
stream.Position = 0;
Completed
Last Updated: 26 Mar 2013 08:52 by ADMIN
To reproduce: 
using System.Windows.Forms;
using Telerik.WinControls.UI.Docking;

namespace Lab.Dock
{
    public partial class DockMDIForm : MainForm
    {
        private RadDock radDock = new RadDock();

        public DockMDIForm()
        {
          
Completed
Last Updated: 05 Feb 2013 07:03 by ADMIN
Put a RadTreeView in an AutoHide tool window and assign it with ContextMenuStrip with multiple levels of sub menu items. When you click a last-level menu item, the tool window will hide and the Click event of the item will not fire.
Completed
Last Updated: 15 Nov 2012 07:19 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: Dock
Type: Bug Report
0
The instance of DockWindow is not disposed when the dock's context menu close option "Close", "Close all but this", "Close All" or when the middle mouse button is used for Close operation.
Completed
Last Updated: 07 Sep 2012 07:57 by ADMIN
When you place RadDock with AutoHideAnimation set to None, add several auto-hide windows and you switch between them, you will notice a flickering at the moment of the change.
Completed
Last Updated: 26 Apr 2012 08:52 by ADMIN
To reproduce:
- create a VB project
- open the advanced layout designer and add few windows in it
- save it and the windows will not show on the form
Completed
Last Updated: 16 Apr 2012 13:59 by Jesse Dyck
In the test scenario the Autohide Windows is hosted in parent RadDock floating windows.

The ToolWindow in AutoHide dockstate disposed,
after docking the main ToolWindow to tab mode, in a specific scenario.
Completed
Last Updated: 07 Mar 2012 05:18 by ADMIN
Detailed description in forum thread: http://www.telerik.com/community/forums/winforms/dock/closing-last-window-with-middle-clicking-the-document-tab-throws-an-exception.aspx