Completed
Last Updated: 25 Jul 2014 12:40 by ADMIN
ADMIN
Created by: George
Comments: 0
Category: Dock
Type: Feature Request
1
When you add a few DocumentWindows to RadDock and you undock one of them to a floating window, then undock another one in the same floating window you will see two tabs. In the main area the selected tab is bolded, the functionality should be the same in the floating windows

For the time being use the following code to manually bold the tabs:

this.RadDock.FloatingWindowCreated += RadDock_FloatingWindowCreated;
...
void RadDock_FloatingWindowCreated(object sender, FloatingWindowEventArgs e)
{
    e.Window.Controls[0].ControlAdded += Form1_ControlAdded;
}

void Form1_ControlAdded(object sender, ControlEventArgs e)
{
    DocumentTabStrip tabStrip = e.Control as DocumentTabStrip;
    tabStrip.ControlAdded -= Form1_ControlAdded;
    if (tabStrip != null)
    {
        tabStrip.SelectedIndexChanged += tabStrip_SelectedIndexChanged;
    }
}

void tabStrip_SelectedIndexChanged(object sender, EventArgs e)
{
    DocumentTabStrip tabStrip = sender as DocumentTabStrip;
    if (tabStrip != null)
    {
        foreach (DocumentWindow item in tabStrip.Controls)
        {
            item.TabStripItem.ResetValue(RadItem.FontProperty, ValueResetFlags.Local);
        }

        tabStrip.SelectedTab.TabStripItem.Font = new Font(tabStrip.SelectedTab.Font.FontFamily, tabStrip.SelectedTab.Font.Size, FontStyle.Bold);
    }
}
Completed
Last Updated: 12 Jan 2012 04:53 by ADMIN
IMPROVE: RadDock - currently when middle click is executed the ActiveWIndows closes instead of the clicked one
Completed
Last Updated: 06 Feb 2015 17:28 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: Dock
Type: Feature Request
1
Currently it is not possible to customize the tool window animation and there is no animation when closing the tool window.

Resolution: 
Set the AutoHideAnimation and the AutoHideAnimationDuration properties of RadDock 
Completed
Last Updated: 21 Jul 2011 09:57 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: Dock
Type: Feature Request
1
The ShowAutoHidePopup method should enable showing auto hidden pop-ups.
Completed
Last Updated: 16 Jan 2015 06:14 by ADMIN
There should be mechanism for specifying which windows should be saved by the SaveToXml method.

Resolution: 
You need to subscribe to the DockWindowSerializing event to prevent saving of window. Please refer to the following code example: 
void radDock1_DockWindowSerializing(object sender, DockWindowCancelEventArgs e)
{
    if (e.NewWindow.Text == "WindowName")
    {
        e.Cancel = true;
    }
}
Completed
Last Updated: 17 Dec 2009 17:35 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: Dock
Type: Feature Request
1
It will be nice to have FloatingSize or DefaultFloatingSize property at a DockWindow level. This will allow the user to have a floating window with a custom default size different than 300x300.
Completed
Last Updated: 14 Jul 2015 07:42 by ADMIN
The user should be allowed to modify the default behavior of floating windows and decide whether they should be owned by the main Form or they should act like normal Forms - with Minimize/Maximize options and appearing in the System's Taskbar.
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: 13 May 2011 04:45 by ADMIN
Add functionality in the Advanced Layout Designer to delete ToolWindows
Completed
Last Updated: 18 Feb 2015 14:55 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: Dock
Type: Feature Request
0
One possible scenario is adding an application menu button like in RadRibbonBar.
Completed
Last Updated: 11 Feb 2010 03:20 by ADMIN
Currently auto-hidden windows are displayed under following conditions:

- Associated TaItem is hovered
or
- Associated TabItem is clicked
or
- The DockWindow itself becomes the currently Active one

We should allow the user to control these conditions.
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: 18 Feb 2015 14:56 by ADMIN
IMPROVE. RadDock - add possibility for replacing the page items in the DocumentWindows with custom ones.

Resolution: 
Use the static class RadDockEvents to subscribe to events before InitializeComponent
Completed
Last Updated: 06 May 2011 05:49 by ADMIN
When saving the layout RadDock saves the windows as they appear in the DockWindows collection. However, improvement to save the current toolwindows position will be great addition.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Dock
Type: Feature Request
0
Currently, no images are shown in AutoHideTabs of ToolWindows. It will be a nice feature if there are such images.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Dock
Type: Feature Request
0
There should be events firing when the AutoHideWindow pops up and collapses.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Dock
Type: Feature Request
0
One should know what is the reason that causes a transaction to take place. For example, if you double-click the titlebar of a FloatingWindow to redock it in RadDock, the user should known that the reason is a double-click operation.
Completed
Last Updated: 09 Feb 2016 13:38 by ADMIN
This request concerns adding a state for the buttons in the ToolWindow caption, which will allow different theming for the buttons, when the window is active and inactive.
Completed
Last Updated: 18 Jul 2023 14:26 by ADMIN
Release R2 2023 SP1
Currently, loading the store layout in RadDock may result in different UI panels according to the available internal splitcontainers/panels that are invisible. Perhaps a "SaveAsDefaultLayout()" and "RestoreDefaultLayout()" method could be introduced. Thus, it wouldn't be necessary to clear the windows before loading XML layout.