Hi,
I'm new to Telerik and testing it, so my question is probably simple, but after some experiments I must confess, I am confused.
My scenario is very simple: the user click on the button (ribbon) and a new search result (grid) should appear as a new form inside of the toolwindow. At the beginning, there is no toolwindow at all. Each new result should be contained in the same, only one, toolwindow (tooltabstrip?), so the user can float it all at once.
I tried to use:
if (host == null)
{
host = this.radDock1.DockControl(form, DockPosition.Left);
}
else
{
this.radDock1.DockControl(form, host, DockPosition.Fill);
}
It seems to be working fine, but, when I float this tollwindow and use the procedure obove I the floating state, then, after docking (per double click), all the windows created in the floated state, appeared as additional toolwindows.
My questions are:
- Why?
- What is the proper way to handle my scenario?
Thanks.
Pirx