<
telerik:RadDockZone
ID
=
"RadDockZone1"
runat
=
"server"
Width
=
"99%"
>
<
telerik:RadDock
ID
=
"rdSystemInfo"
runat
=
"server"
Width
=
"99%"
Skin
=
"Web20"
>
<
Commands
>
</
Commands
>
<
TitlebarTemplate
>
<
div
>
<
asp:Label
ID
=
"Label1"
runat
=
"server"
Text
=
"Label"
Font-Bold
=
"true"
Font-Size
=
"Medium"
></
asp:Label
>
</
div
>
</
TitlebarTemplate
>
<
ContentTemplate
>
test
</
ContentTemplate
>
</
telerik:RadDock
>
</
telerik:RadDockZone
>
<
div
style
=
"line-height:25px;"
>
<
asp:Label
ID
=
"Label1"
runat
=
"server"
Text
=
"Label"
Font-Bold
=
"true"
Font-Size
=
"Medium"
></
asp:Label
>
</
div
>
var
popup = window.radopen(Url,
null
);
function
GetRadWindow() {
var
oWindow =
null
;
if
(window.radWindow) oWindow = window.radWindow;
else
if
(window.frameElement.radWindow) oWindow = window.frameElement.radWindow;
return
oWindow;
}
Hi. We have a user control that has a rad window and rad window manager. The control accepts a couple of parameters (used to build the url to display) and has a few custom events – like window closed that are exposed to the calling page.
We now have a requirement to use this control upto 20 times on a single page. I am sure that having the user control on the page 20 times, with 20 different radwindow managers and 20 different radwindows is probably not the best way to do this.
We still want it as a user control as the exact same functionality is required on multiple different pages, and like wise multiple times on some pages.
What is the best way to achieve this? can you have a single window and manager and share it between all instances of the user control for example?