Hi,
We are launching a window via client side code as shown below.
var oWnd = $find("<%= RadWindowManager1.ClientID %>");
oWnd.onClientClose = "refreshTree";
oWnd.show();
oWnd.setUrl( "http://www.someURL.com");
This works, the window opens and no errors are thrown.
When the window is closed, I want function refreshTree to fire, but right now it does not. There are no Javascript errors reported by Firefox so I am not sure why this is not working. Any ideas out there?
We are launching a window via client side code as shown below.
var oWnd = $find("<%= RadWindowManager1.ClientID %>");
oWnd.onClientClose = "refreshTree";
oWnd.show();
oWnd.setUrl( "http://www.someURL.com");
This works, the window opens and no errors are thrown.
When the window is closed, I want function refreshTree to fire, but right now it does not. There are no Javascript errors reported by Firefox so I am not sure why this is not working. Any ideas out there?