Completed
Last Updated: 23 Feb 2012 03:51 by ADMIN
I am using nested dock objects. I find that if I close one tabbed window using the X icon, the control closes properly, leaving the other tabbed windows opened. However, if I try to close the tabbed window using the keyboard sequence Ctrl+F4, this also closes one of the tabs within another window!
I have attached an example form. This contains a RadDock with 2 windows, DocumentWindow1 and DocumentWindow2. DocumentWindow1 also contains two document windows, DocumentWindow3 and DocumentWindow4. The sequence of events to reproduce this behaviour is as follows:
- In designer mode: set focus on DocumentWindow2 and Save
- Run app
- Form opens with focus set on DocumentWindow2, as expected
- Set focus on DocumentWindow1
- Set focus back to DocumentWindow2
- Press Ctrl+F4 to close DocumentWindow2
- This closes DocumentWindow2 but also closes DocumentWindow4 within DocumentWindow1.
Please note that if I use the X button to close DocumentWindow2, only DocumentWindow2 gets closed, as expected.
Completed
Last Updated: 21 Feb 2012 04:58 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: Dock
Type: Feature Request
2
I've discovered a behavioral issue with the tool-window when one of its containing control's data-binding is updated.

I'm designing an application using the MVVM design pattern with a basic View and View-Model. The View is a form that contains a RadDock, ToolWindow containing a Label, and a Button to update the Label's Text; and data-binding setup to the ToolWindow's property "DockState" and a Label's property "Text". The View-Model contains the bound properties "ToolWindow1DockState" and "Label1Text", which implements INotifyPropertyChanged to update the respective controls; and a method used to update Label1's text.

After I click "Auto-hide" on ToolWindow1 and click the "Change Text" button, I'm expecting ToolWindow1 to remain in the Auto-hide state. Instead, ToolWindow1 is placed in the Docked state.
Completed
Last Updated: 07 Feb 2012 06:19 by ADMIN
1) Start with new Forms application.

2) Add RadDock set to Fill to the Form.

3) Open Designer.

4) Add ToolWindows docked Top and Right.  Add two ToolWindows docked fill.

5) Close Designer.

6) Open Designer.

7) Delete two docked ToolWindows.

8) Close Designer.

9) Deleted ToolWindows remain.  I also had them become tabbed with the 
ToolWindow docked to the Top in a previous test.

10) In the Designer, if I check the box, the two ToolWindows become docked
Left.  If I close the Designer and re-open it, I can then delete them.

11) I deleted all ToolWindows in the Designer and closed it.

12) The ToolWindows are removed.

13) Upon re-opening the Designer and adding windows, they do not appear
upon closing the Designer.

14) It appears that the documentContainer is missing from the DocumentOutline.
However, it is still present in the code because if I delete the RadDock, and
then re-add it, the name of the new documentContainer is numbered higher than
the first one.  If I try to rename it from 1 to 3, it tells me that 1 is still
in use.

15) Adding ToolWindows at this point works again.
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: 29 Dec 2011 05:06 by ADMIN
Steps to reproduce:
1. Add a new form to a project and set MdiContainer to true
2. Drag a RadDock onto the form and set the AutoDetectMdiChildren to true
3. Add another form to be used as MdiChild
4. Drag a button onto the second form and in the Click event handler add call to this.Close()
5. Run the project and add an MdiChild form to the MdiContainer form.
6. Press the button on the child form. You will see an exception.
Completed
Last Updated: 17 Nov 2011 11:40 by ADMIN
1. Create a new project containing RadDock
2. Add two buttons, the first one will add a document window, the second one will remove it.
3. Run the project and add and remove document windows multiple times.
Completed
Last Updated: 09 Nov 2011 11:23 by ADMIN
Completed
Last Updated: 15 Aug 2011 10:55 by ADMIN
FIX. RadDock - arranging DocumentWindows tabs in design time is not possible.
Completed
Last Updated: 29 Jul 2011 10:25 by ADMIN
ADD. RadDock - functionality to change the text orientation of the AutoHideTab
Comment: The text of AutoHideTab can be flipped for achieving of these requirements as the following code snippet demonstrates:
private void radDock1_TransactionCommitted(object sender, RadDockTransactionEventArgs e)
{
if (e.Transaction is AutoHideTransaction)
{
foreach (DockWindow window in e.Transaction.AssociatedWindows)
{
window.AutoHideTab.FlipText = true;
window.AutoHideTab.TextAlignment = ContentAlignment.MiddleCenter;
}
}
}
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: 18 May 2011 04:38 by Jesse Dyck
In addition, if this ContextMenu is called from a control contained in an autohide DockWindow that is currently expanded, this window becomes collapsed.
Completed
Last Updated: 13 May 2011 08:25 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: Dock
Type: Bug Report
0
There is a memory leak in RadDock when closing a document window with the context menu.
Completed
Last Updated: 13 May 2011 04:45 by ADMIN
Add functionality in the Advanced Layout Designer to delete ToolWindows
Completed
Last Updated: 06 May 2011 10:14 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Dock
Type: Bug Report
0
In very specific cases, if one resizes RadDock, its content is not resized/redrawn correctly.
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: 04 May 2011 06:18 by Jesse Dyck
ADMIN
Created by: Stefan
Comments: 1
Category: Dock
Type: Bug Report
1
FIX. RadDock does not load the ActiveWindow correctly.
Completed
Last Updated: 26 Apr 2011 10:50 by ADMIN
FIX. RadDock SplitterWidth property is not taken into consideration, nor setting the MinSize of each splitter individually.
Completed
Last Updated: 24 Mar 2011 11:40 by ADMIN
ADMIN
Created by: Ivan Petrov
Comments: 0
Category: Dock
Type: Bug Report
1
changes
---------------------------------
event is changed to ItemSelecting - tabstrip now is pageview (documentTabStrip1.TabStripElement.ItemSelecting += new EventHandler<Telerik.WinControls.UI.RadPageViewItemSelectingEventArgs>(TabStripElement_ItemSelecting))
introduce new powefull events for RadDock - SelectedTabChanging / SelectedTabChanged


Create a dock with couple of documents.
Subscribe to the TabSelecting event of RadTabStripElement and cancel it showing a message box indicating the cancellation.
The message box will be shown 5 times.
Completed
Last Updated: 22 Mar 2011 04:54 by ADMIN
Create a new project and add RadForm
Add RadDock and set its Dock property to Fill
Run the project and start resizing the form, you will see that the memory increases
Completed
Last Updated: 28 Jan 2011 02:46 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Dock
Type: Bug Report
0
When you open the Advanced Layout Designer of RadDock and you try to reposition a ToolWindow by a drag-and-drop operation, the designer closes unexpectedly. This issue happens when there is a specific layout created.