Hi,
Short description of my problem:
I have an radwindow witch open a radWindow inside. When the top modal window is closed I want to call a javascript method.
First time I open and close the modal window it works ok, second time the same, but the third time it stops working. Same behavior every time.
Any idea why?
Short description of my problem:
I have an radwindow witch open a radWindow inside. When the top modal window is closed I want to call a javascript method.
function RwMyRw_Close(value) |
{ |
alert('hello'); |
} |
<telerik:RadWindowManager runat="server" ID="rdWndMgr" Skin="Office2007" |
VisibleTitlebar="true" EnableViewState="true" UseClassicWindows="false" InitialBehavior="close" > |
<Windows> |
<telerik:RadWindow |
ID="rwMyRw" runat="server" ReloadOnShow="true" Behavior="close" |
VisibleTitlebar="true" Height="550px" Width="600px" Modal="true" |
NavigateUrl="test.aspx" |
OnClientClose="RwMyRw_Close" /> |
</Windows> |
</telerik:RadWindowManager> |
First time I open and close the modal window it works ok, second time the same, but the third time it stops working. Same behavior every time.
Any idea why?