Hey,
I've been trying to get the parent to refresh on a window close. The javascript function does not seem to be firing when I close the window, even those I have the following code:
Since there is little documentation, I used the code examples from the Radwindow for ASP.NET.
Next, I'm using the OnClientClose event on the Window:
Any idea of what I'm doing wrong? I must admit, I'm not well versed in the previous version of the Radwindow to know if I'm making a mistake of if it is a bug.
Thanks!
Bob
I've been trying to get the parent to refresh on a window close. The javascript function does not seem to be firing when I close the window, even those I have the following code:
Since there is little documentation, I used the code examples from the Radwindow for ASP.NET.
| function OnClientClose(oWnd) |
| { |
| var oWnd = GetRadWindow().BrowserWindow; |
| oWnd.location.href = oWnd.location.href; |
| } |
Next, I'm using the OnClientClose event on the Window:
| <telerik:RadWindowManager ID="PopupManager" runat="server" Height="500px" Width="800px"> |
| <Windows> |
| <telerik:RadWindow ID="Popup" runat="server" Style="display: none;" Behavior="Default" |
| OnClientClose="OnClientClose" Height="600px" IntialBehavior="None" Width="800px"> |
| </telerik:RadWindow> |
| </Windows> |
| </telerik:RadWindowManager> |
Any idea of what I'm doing wrong? I must admit, I'm not well versed in the previous version of the Radwindow to know if I'm making a mistake of if it is a bug.
Thanks!
Bob