I have run into a situation where the Radwindow is not showing as a modal window. I have given it all the properties, even tried setting with javascript but no joy, it does not show up as a modal window and I can click on stuff in the background. Is there something I am missing. Using Q3 controls with IE9. I am also using a master page but it has always worked before inside a master page. totally lost at this point as to why its not working.
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" Runat="Server"> <link href="../Styles/Styles.css" rel="stylesheet" /> <script type="text/javascript"> function GetWindow(Token) { var radDash = $find("<%= radWindow.ClientID%>"); if (Token == 0) { radDash.setUrl("Request.aspx?Type=" + 0); } else if (Token > 0) { radDash.setUrl("Request.aspx?Type=" + Token); } radDash.set_modal(true); radDash.show(); } </script></asp:Content><asp:Content ID="Content2" ContentPlaceHolderID="BodyContent" Runat="Server"> <telerik:RadGrid ID="myRadGrid" runat="server" AutoGenerateColumns="false" Skin="Web20" Font-Size="10" OnNeedDataSource="myRadGrid_NeedDataSource"> <MasterTableView runat="server" DataKeyNames="intRequestId" CommandItemDisplay="Top"> <HeaderStyle HorizontalAlign="Center" /> <ItemStyle HorizontalAlign="Center" /> <AlternatingItemStyle HorizontalAlign="Center" BorderColor="#404040" /> <CommandItemStyle HorizontalAlign="Left" Height="25px" VerticalAlign="Middle" /> <CommandItemTemplate> <a href="#" id="Request" onclick="GetWindow(0);return false;">Request Token</a> </CommandItemTemplate> <Columns> <telerik:GridBoundColumn DataField="Name" HeaderText="NAME" /> </Columns> </MasterTableView> </telerik:RadGrid> <telerik:RadWindowManager ID="radWindow" runat="server" CenterIfModal="true" Width="800px" Height="450px" Modal="true" ShowContentDuringLoad="false" Skin="Web20" Behaviors="Close" VisibleStatusbar="false"> </telerik:RadWindowManager></asp:Content>