Hi.
I have RadWindow and have close button inside it.
I want to close the radwindow when i click on close button, and same time, refresh the parent page.
I'm using this code..
parent page:
<script type="text/javascript">
function ShowEditForm(id, rowIndex,tabID) {
var grid = $find("<%= RadGrid1.ClientID %>");
var rowControl = grid.get_masterTableView().get_dataItems()[rowIndex].get_element();
grid.get_masterTableView().selectItem(rowControl, true);
var oWnd = window.radopen("EditTable.aspx?autoRowID=" + id + "&tabID=" + tabID, "UserListDialog");
oWnd.add_close(OnClientClose);
}
function OnClientclose(oWnd) {
}