Completed
Last Updated: 27 May 2016 14:37 by ADMIN
ADMIN
Dimitar
Created on: 18 Mar 2016 06:47
Category: Dock
Type: Bug Report
2
FIX. RadDock - when the dock is placed in a panel the underlying controls are not sized properly.
To reproduce:
- Add a panel to a form, dock it to fill the entire space.
- Add RadDock to it, set its Dock property to fill.
- Add a document window with a grid to it (the grid should fill the entire space).
- Start the application and maximize the form.  

Workaround:
- Remove the panel or use RadPanel instead.

- Handle the SizeChanged event
private void RadForm1_SizeChanged(object sender, EventArgs e)
{
	var window = this.radDock1.ActiveWindow;
	this.radDock1.ActiveWindow = null;
	this.radDock1.ActiveWindow = window;
}
1 comment
ADMIN
Dess | Tech Support Engineer, Principal
Posted on: 05 May 2016 10:36
A second scenario is available by hosting RadDock in a RadPageView. Please refer to the attached sample project.