Hi there,
I'm working on an app that has a RadWindowManager on a master page. This is used to open some detail windows in a non-modal way, which also updates a count of open windows, which can be re-opened, blah blah blah.
The issue occurs when a modal window is opened (via radopen) from a widget placed on the page, which uses the Master Page's RadWindowManager by design, and the window is set modal via script. The user continues their work, closes the window, and everything's fine.
However, the next time the user opens the detail window, it is now modal, despite being explicitly set to non-modal via set_modal(false). In fact, the window itself reports isModal == false, but is still displayed modally.
The RadWindowManager (on the Master page) is as follows:
Any thoughts?
I'm working on an app that has a RadWindowManager on a master page. This is used to open some detail windows in a non-modal way, which also updates a count of open windows, which can be re-opened, blah blah blah.
The issue occurs when a modal window is opened (via radopen) from a widget placed on the page, which uses the Master Page's RadWindowManager by design, and the window is set modal via script. The user continues their work, closes the window, and everything's fine.
However, the next time the user opens the detail window, it is now modal, despite being explicitly set to non-modal via set_modal(false). In fact, the window itself reports isModal == false, but is still displayed modally.
The RadWindowManager (on the Master page) is as follows:
<
telerik:RadWindowManager
ID
=
"rwmRecord"
runat
=
"server"
Height
=
"500"
Width
=
"900"
ShowOnTopWhenMaximized
=
"false"
Behaviors
=
"Close,Move,Resize,Maximize,Reload,Minimize"
ReloadOnShow
=
"true"
ShowContentDuringLoad
=
"false"
VisibleStatusbar
=
"false"
EnableShadow
=
"true"
OnClientClose
=
"OnClientClose"
OnClientCommand
=
"OnClientCommand"
>
Any thoughts?