I have a radMenu object in my master page.
<rad:RadMenu id="reACTMenu" runat="server" Skin="Web20" Width="922px" EnableEmbeddedSkins="false"></rad:RadMenu> |
When I open a modal dialog box in a page using this master page, the menu bar appears above the window.
Here is the window definition:
<rad:RadWindowManager id="WindowMgr" |
runat="server" |
Skin="Vista" |
VisibleStatusbar="false" |
OnClientClose="OnWindowClose"> |
<windows> |
<rad:RadWindow id="RelateWindow" |
Modal="true" |
Runat="server" |
Width="400px" |
Behavior="Move,Close" |
Height="400px" |
NavigateUrl="AppendTicketSearch.aspx" |
OnClientShow="centerWindow" |
OnClientClose="afterRelate"> |
</rad:RadWindow> |