Completed
Last Updated: 01 Sep 2016 14:25 by ADMIN
Completed
Last Updated: 18 Nov 2013 16:06 by Advanced Programs Trading Co.
The appearance of the RadDock's title bar is broken when the control is configured with any of the following built-in skins in a RTL layout.
Declined
Last Updated: 17 Mar 2015 08:55 by Chris
Created by: Chris
Comments: 1
Category: Dock
Type: Bug Report
0
I'm brand new to Telerik controls, so I know I'm not doing something right.  I have a RadDock whose ContentTemplate contains a UserControl containing a RadListBox.  The controls contained in the ItemTemplate do not appear.  I believe I"ve narrowed down the issue to the attached code.  Can you tell me why the RadListBox content does not appear?  In the code sample I have the exact same code outside of the RadDock and it displays fine.   Also, I have the exact same problem when adding my UserControl to a RadSlidingPane. The contained listbox again does no appear.
Thanks for your help,
Chris
Completed
Last Updated: 27 Jun 2016 14:02 by ADMIN
It should not be possible to add docks in a RadDockZone, the property AllowedDocks of which does not include the IDs of the included docks.
Completed
Last Updated: 24 Jun 2016 15:09 by ADMIN
The RadDock in a vertical RadDockZone is not expanded correctly the first time when it is collapsed by default and its Height is set. If Resizable is set to true, the dock will never expand.
Completed
Last Updated: 10 Jun 2016 06:51 by ADMIN
When some content is entered in a RadDock, the project is closed, opened again and new elements are added in the content via the Visual Studio's designer, the elements that are included after the reloading of the project will disappear from the designer, after editing the dock.
Completed
Last Updated: 12 Jul 2016 09:46 by ADMIN
The CSS class "RadDock_Default" will be applied to the placeholder of a RadDock, regardless of the built-in skin that is specified for the control.
Declined
Last Updated: 26 Jul 2016 10:55 by ADMIN
ADMIN
Created by: Slav
Comments: 3
Category: Dock
Type: Feature Request
3
The RadDock will be moved with the cursor when the scroll wheel is used while dragging the control.
Completed
Last Updated: 26 May 2016 11:28 by ADMIN
ADMIN
Created by: Danail Vasilev
Comments: 1
Category: Dock
Type: Bug Report
1
When a RadDock without having its height property set is collapsed and then expanded, an explicit height is set to its wrapper as well as to its content wrapper, so that it cannot be resized. The workaround is to remove both heights on DockExpandCollapseCommand:

ASPX:

        <telerik:RadDock runat="server" ID="RadDock1" RenderMode="Classic" Resizable="true">
            <ContentTemplate>
                <asp:Button ID="btn" runat="server" Text="Click me" OnClientClick="toggleVisibility(); return false;" />
                <div id="divExpand" style="display: none; height: 400px;">
                    Expanded
                </div>
            </ContentTemplate>
            <Commands>
                <telerik:DockExpandCollapseCommand OnClientCommand="DockExpandCollapseCommand" />
            </Commands>
        </telerik:RadDock>

JavaScript:

        <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
            <script type="text/javascript">
                function toggleVisibility() {

                    var divExpand = $get('divExpand');

                    if (divExpand.style.display == 'none') {
                        divExpand.style.display = 'block';
                    }
                    else {
                        divExpand.style.display = 'none';
                    }
                }

                function DockExpandCollapseCommand(sender, args) {

                    if (!sender.get_collapsed()) {
                        sender.get_contentContainer().style.height = "";
                        sender.get_element().style.height = "";
                    }
                }
            </script>
        </telerik:RadCodeBlock>
Completed
Last Updated: 14 Sep 2021 09:00 by ADMIN
Release Q3 2013
When there is more than one row of RadDocks in a horizontally oriented RadDockZone, it will not be possible to resize them in order to use all the available width of the zone.
Completed
Last Updated: 04 Sep 2013 14:56 by ADMIN
If a page scrolling is started by touching the content of a RadDock and dragging under IE 10 in a mobile device, the page will not be scrolled.
Completed
Last Updated: 22 May 2015 12:23 by ADMIN
When you have a RadDockZone in a container with overflow, the RadDockZone contains resizable RadDocks (Resizable="true") and you start resizing one of the docks by clicking its bottom edge and dragging outside the border of the container with overflow, the resized dock will be positioned absolutely in the dock zone.
Completed
Last Updated: 04 Sep 2013 08:15 by ADMIN
ADMIN
Created by: Slav
Comments: 0
Category: Dock
Type: Bug Report
2
The RadDock is not transparent whlie being dragged.
Completed
Last Updated: 22 Apr 2015 10:32 by ADMIN
When you place input HTML elements in the content of a RadDock and open the the page with mobile Chrome for Android, you will not be able to use the input elements.
Completed
Last Updated: 13 Aug 2021 10:35 by ADMIN
Release R3 2016
When you programmatically load RadDocks in the page view of a RadMultiPage, which is ajaxified via RadAjaxManager or RadAjaxPanel, the docks will be ordered incorrectly after an AJAX request is performed on change of the visible page view.
Completed
Last Updated: 04 Sep 2013 14:54 by ADMIN
ADMIN
Created by: Slav
Comments: 0
Category: Dock
Type: Bug Report
2

			
Completed
Last Updated: 05 Sep 2013 09:50 by ADMIN
Created by: Sandun
Comments: 2
Category: Dock
Type: Bug Report
1
I have a RadDockLayout and RadDockZone in the markup and I'm dynamically add RadDock controls from code behind to RadDockZone. And the intended drag and drop behavior of Dock items within the Zone is working fine in IE and Chrome, but not in Firefox. In Firefox when I click on the Title area of the RadDock item (which is the drag handler) the Dock item detached from the list and from the Zone and goes far top of the page from the cursor or just disappear. So far what I have found is this;

The RadDockZone is placed in bottom of the long page (with browser scrolled to bottom). The RadDock item does not take the scroll height into account when it's position is calculated.

I'm using latest version of Firefox (v17) and other browsers (IE v9, Chome v23)

Is there a fix for this ?
1 2