My english is poor,but I will do my best to make myself understood.When the radwindow is called to show,I can just see the content window.While I mouseover the titlebar or aound content window,the window will show fine.How can I do to resolve this.I called the radwindow to show by client code like this.
| function getWindows() |
| { |
| $find("<%=RMILSWeb.ClientID%>").disable(); |
| //return MainRadWindow; |
| return $find("<%=RadWindow1.ClientID%>"); |
| } |
| function btnReserve_Click() |
| { |
| getWindows().setUrl('DialogBox_Telerik/SelectPatronForReserve.aspx'); |
| getWindows().set_modal(true); |
| getWindows().setSize(300,120); |
| getWindows().setActive(); |
| getWindows().set_behaviors(Telerik.Web.UI.WindowBehaviors.Move + Telerik.Web.UI.WindowBehaviors.Close ); |
| getWindows().show(); |
| } |