Unplanned
Last Updated: 20 Feb 2018 16:06 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 0
Category: Docking
Type: Bug Report
1

			
Unplanned
Last Updated: 03 Jan 2017 21:19 by ADMIN
Unplanned
Last Updated: 03 Jan 2017 20:54 by ADMIN
This happens when the resizer is moved to max right (for example) and then the orientation is changed. 
Won't Fix
Last Updated: 25 Aug 2016 08:03 by ADMIN
1. Create a raddocking control inside of a radwindow.
2. Add a few docks.
3. Drag a dock and drop it in a floating position.
4. Drag another dock.
5. As you drag the 2nd dock the first one disappears. It's somehow falling behind the raddocking control.
Won't Fix
Last Updated: 11 Aug 2016 14:04 by ADMIN
Unplanned
Last Updated: 03 Aug 2016 12:47 by ADMIN
Unplanned
Last Updated: 03 Aug 2016 12:47 by ADMIN
When using the UnpinAllPanes/PinAllPanes methods of a RadPaneGroup inside the Pin/Unpin events only the clicked RadPane is pinned/unpinned. If a Dispatcher is added all the RadPane instances are pinned/unpinned but after multiple pins/unpins sometimes the unpinned RadPane Headers become selected and the AutoHideArea is not longer expanded.
Unplanned
Last Updated: 03 Aug 2016 12:46 by B
I would like OverflowMode to work for all RadPaneGroup in xaml/codebehind and this be persisted through SaveLayout/LoadLayout.

For example:

<telerik:RadDocking.DocumentHost>
    <telerik:RadSplitContainer x:Name="MainContainer"
                                           Orientation="Vertical">
					<telerik:RadPaneGroup ScrollMode="Item"
                                          x:Name="GroupMainTop"
                                          OverflowMode="Scroll"
                                          ScrollViewer.HorizontalScrollBarVisibility="Auto"
                                          cal:RegionManager.RegionName="RegionMainTop"
                                          telerik:ProportionalStackPanel.RelativeSize="150, 400" />

Works, but when I do:

        private void LoadLayoutInternal(XElement xml)
        {
            using (MemoryStream stream = new MemoryStream())
            {
                xml.Save(stream);
                stream.Seek(0, SeekOrigin.Begin);
                this.Docking.LoadLayout(stream);
            }
            Dispatcher.BeginInvoke(() => FixDockProperties());
        }

The RadPaneGroup no longer has OverFlowMode Scroll

When I try to fix this in code behind, this has no effect:

        private void FixDockProperties()
        {
            // Fix diverse properties die door laden van de layout verloren zijn gegaan.
            // Dat lijkt niet te werken, ik heb Telerik gevraagd waarom dat is:
            // http://www.telerik.com/forums/overflowmode=-scroll-disappears-when-i-save-load-layout#mwEJP5eh8EG4TbNqfnd00g
            GroupMainTop.OverflowMode = Telerik.Windows.Controls.TabControl.TabOverflowMode.Scroll;
            GroupMainTop.SetValue(ScrollViewer.HorizontalScrollBarVisibilityProperty, ScrollBarVisibility.Auto);
            GroupMainTop.ScrollMode = TabControlScrollMode.Item;


Won't Fix
Last Updated: 17 May 2016 10:40 by ADMIN
When the IsHidden property of Pane is set to true at startup the Pane is shown and immediately hidden.
Won't Fix
Last Updated: 22 Jan 2016 13:21 by ADMIN
Message: "Value does not fall within the expected range."StackTrace = "at MS.Internal.XcpImports.CheckHResult(UInt32 hr)   at MS.Internal.XcpImports.SetValue(IManagedPeerBase obj, DependencyProperty property, Boolean b)   at System.Windows.DependencyObject.SetValue(DependencyProperty property, Boolean b)   at System.Windows.Controls.Primitives.Popup.set_IsOpen(Boolean value)   at Telerik.Windows.Controls.InternalWindow.MultiplePopupWindowHost.PopupHostManager.ClosePopup()   at Telerik.Windows.Controls.InternalWindow.MultiplePopupWindowHost.Close()   at Telerik.Windows.Controls.WindowBase.CloseWithoutEventsAndAnimations()   at Telerik.Windows.Controls.Docking.ToolWindow.Hide()   at Telerik.Windows.Controls.RadDocking.<OnUnloaded>b__26()"
Completed
Last Updated: 26 May 2015 06:49 by ADMIN
Completed
Last Updated: 10 Mar 2014 12:38 by ADMIN