We created the follow RadWindowManager
<
telerik:RadWindowManager
ID
=
"RadWindowManagerDefault"
runat
=
"server"
KeepInScreenBounds
=
"false"
Width
=
"950px"
Height
=
"2048px"
Skin
=
"Office2007"
RestrictionZoneID
=
"janelas"
></
telerik:RadWindowManager
>
and, on Page_Load we create the RadWindow components:
int
i = 0;
foreach
(EstadoWidgetResp widget
in
lista)
{
radw =
new
RadWindow();
radw.ID =
"widget-"
+ widget.IdControle;
radw.Title = widget.Title;
radw.ShowContentDuringLoad =
true
;
RadWindowManagerDefault.Windows.Add(radw);
i++;
}
the page contains a DIV element as restricted zone for the windows:
<
div
id
=
"janelas"
>
</
div
>
but, when we look at the rendered HTML (using FireBug extension), whe found:
[html]
[head contents]
[body]
<
form
id
=
"aspnetForm"
action
=
"Default.aspx"
method
=
"post"
name
=
"aspnetForm"
>
[DIV of #1 window (RadWindowWrapper_ctl00_
)]
[DIV of #2 window (RadWindowWrapper_ctl00_
)]
...
[DIV of #n window (RadWindowWrapper_ctl00_
)]
[body page]
<
div
id
=
"janelas"
>[RadWindowManager element]</
div
>
[end of html]
So, when we resize the browser window, the RadWindows still fixed, but, as a DIV element the 'expected' behaviour was: the RadWindow moves with the DIV (id="janelas") because, we expected that the RadWindows render was insed of restricted zone element.
Can we render the RadWindows inside the DIV[id="jalelas"] element ?
Thanks in advance,
André