We have found during testing that ToolWindows can be moved completely out of the container and act as its own window, which is awesome.
However when the form is closed the entire openedge session crashes.
Is there a way during the FormClosing event to close these windows?
1 Answer, 1 is accepted
0
Hristo
Telerik team
answered on 08 Nov 2018, 07:51 AM
Hello Terry,
We are not aware of a similar issue with the dock control and the floating windows. Closing the form with the RadDock will also close and dispose of the floating windows. The issue might be related to the current application set up in the OpenEdge environment. You can try handling the FormClosing event, and then iterate each of the active floating windows:
public partial class RadForm1 : Telerik.WinControls.UI.RadForm
foreach (FloatingWindow fw in this.radDock1.ActiveFloatingWindows)
{
fw.Close();
}
}
}
I hope this will help.
Regards,
Hristo
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers.Learn More.