Won't Fix
Last Updated: 20 Jan 2016 14:55 by ADMIN
ADMIN
Telerik Admin
Created on: 15 Oct 2013 09:25
Category: Docking
Type: Bug Report
2
Using the LayoutChangeEnded event to save the layout when docking a floating Pane causes that Pane to not be saved correctly.
Using the LayoutChangeEnded event to save the layout when docking a floating Pane causes that Pane to not be saved correctly.
2 comments
ADMIN
Georgi
Posted on: 20 Jan 2016 14:55
The XAML team has recently reviewed this issue and will not be addressing it as at this time the team is focusing on the bugs impacting the highest number of developers. If you have encountered this issue and it is blocking for your work please contact us through the support ticketing system with details on your setup and a reference to this item.
ADMIN
Vladi
Posted on: 23 Sep 2014 11:39
Workaround:
In order to resolve this issue in the Silverlight version of the control all you need to do is add a Dispatcher for the SaveLayout call in the LayoutChangeEnded event.

Example:
private void OnLayoutChangeEnded(object sender, EventArgs e)
 {
     this.Dispatcher.BeginInvoke(new Action(delegate()
     {
          ...
          this.radDocking.SaveLayout(...
          ...
     }));
}