When the content container of RadDock is configured to be a drag handle via the following code dock.set_handle(dock.get_contentContainer()); a JavaScript error will be thrown if you call the 'clone' client-side function of the control dock.clone()
The animation of the RadDock control is causes performance issues under IE8 and due to that the expanding/collapsing and the docking/undocking functionalities are not working as expected. Disabling the animation resolves the issue: EnableAnimation="false"
The rounded corners of RadDock controls that are using the Silk or Glow skin cannot be disabled.
When you dock a resizable RadDock (Resizable="true") in a RadDockZone, its drag handle is displaced in Chrome, which prevents you from resizing it when there are multiple docked docks.
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.
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.
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
We have this client reporting to me that RadDock control is not working on Windows 8 using Google Chrome most updated version. I have double check on this but it is working on my end using Windows 7 Google Chrome most updated version too. She is saying that on Windows 8 Google Chrome, she would not able to drag the RadDock control from RadDockZone1 to RadDockZone2. Let me know if this something that is a bug on your end? Thanks,
When you place a resizable RadDock control (Resizable="true") in a RadDockZone without specified size and you close the dock, a JavaScript error is thrown.
The RadDock control cannot be expanded when it is set in lightweight render mode and its property Collapsed is set to true. You can avoid this issue by setting the dock in collapsed state via its client-side API: <script type="text/javascript"> function OnClientInitialize(sender, args) { sender.set_collapsed(true); } </script> <telerik:RadDock runat="server" ID="RadDock1" OnClientInitialize="OnClientInitialize"> </telerik:RadDock>
Setting the RenderMode=Auto to a Dock control results in a JS error on the client. Expected is to choose the most appropriate render mode among the existing such.
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.
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 ?
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.
The RadDock is not transparent whlie being dragged.