I have a RadTreeList on a page and on the same page I open a Radwindow.
When the user has completed the task in the RadWindow, on button_click the DB is updated and the Radwindow is closed calling the funcion CloseWindow().
This is how I close the RadWindow from the inside the RadWindow:
After the RadWindow is closed I need to rebind/refresh the RadTreeList which is on the parent page of the RadWindow.
How can I achieve that without using Ajax?
Thanks for supporting
Felice
When the user has completed the task in the RadWindow, on button_click the DB is updated and the Radwindow is closed calling the funcion CloseWindow().
This is how I close the RadWindow from the inside the RadWindow:
<script type="text/javascript"> function GetRadWindow() { var oWnd = null; if (window.radWindow) oWnd = window.radWindow; else if (window.frameElement.radWindow) oWnd = window.frameElement.radWindow; return oWnd; } function CloseWindow() { var oWnd = GetRadWindow(); oWnd.close(); } </script>After the RadWindow is closed I need to rebind/refresh the RadTreeList which is on the parent page of the RadWindow.
How can I achieve that without using Ajax?
Thanks for supporting
Felice