I am pulling a aspx page through a radwindow onto my page via a <a href onclick>
the window shows and everything comes up great, the problem is when I go to click on it agian the window will not show agian, and I have no clue why, but if I refresh the page it works fine again. is there something else i need to set in the properties to enable this window toi be opened multiple times on a page if need be. Originall I had a a mouse over but that got annoying in swiping mouse over label accidentally so I changed to onclick.
the window shows and everything comes up great, the problem is when I go to click on it agian the window will not show agian, and I have no clue why, but if I refresh the page it works fine again. is there something else i need to set in the properties to enable this window toi be opened multiple times on a page if need be. Originall I had a a mouse over but that got annoying in swiping mouse over label accidentally so I changed to onclick.
<telerik:RadWindow ID="RadEducation" runat="server" AutoSize="true" DestroyOnClose="true" Animation="FlyIn" NavigateUrl="~/Admin/Educationkey.aspx" MaxHeight="600px" MaxWidth="300px" Modal="true" SkinID="Web20" OffsetElementID="lblKey"></telerik:RadWindow> <a href="#" onclick="myMouseOver();">key</a><asp:Label ID="lblKey" runat="server"></asp:Label> function myMouseOver() { var oWnd = $find("<%=RadEducation.ClientID%>"); oWnd.show(); }