We are facing issue while closing the telerik rad window. In telerik rad window, we are doing updates and clicks on ‘Save’ button. At the same time clicks on window’s tab and drag the window. After sometime the rad window will pop-up but we are unable to close the window by clicking on ‘Cancel’ link or ‘Close’ icon.
On click of ‘Cancel’ button application is calling “CloseAndRebind” function to close the window. Code is written as mentioned below
function CloseAndRebind() {
GetRadWindow().Close();
GetRadWindow().BrowserWindow.RefreshBarcodeSettingRadGrid();
}
function GetRadWindow() {
var oWindow = null;
if (window.radWindow)
oWindow = window.radWindow;
else if (window.frameElement.radWindow)
oWindow = window.frameElement.radWindow;
return oWindow;
}
Same behavior we have observed in one of the demo of telerik rad window.
URL of Telerik rad window demo: http://demos.telerik.com/aspnet-ajax/controls/examples/integration/gridandwindow/defaultcs.aspx?product=window
Steps to reproduce issue in demo URL
1. Click “Add New Record” link
2. Click on “Insert” button
3. At the same time drag the popup
4. New record will be inserted but pop-up will not closed, now click on “Cancel” button
Pop-up should be closed but it isn’t. We are facing the same issue.
Please do needful.
On click of ‘Cancel’ button application is calling “CloseAndRebind” function to close the window. Code is written as mentioned below
function CloseAndRebind() {
GetRadWindow().Close();
GetRadWindow().BrowserWindow.RefreshBarcodeSettingRadGrid();
}
function GetRadWindow() {
var oWindow = null;
if (window.radWindow)
oWindow = window.radWindow;
else if (window.frameElement.radWindow)
oWindow = window.frameElement.radWindow;
return oWindow;
}
Same behavior we have observed in one of the demo of telerik rad window.
URL of Telerik rad window demo: http://demos.telerik.com/aspnet-ajax/controls/examples/integration/gridandwindow/defaultcs.aspx?product=window
Steps to reproduce issue in demo URL
1. Click “Add New Record” link
2. Click on “Insert” button
3. At the same time drag the popup
4. New record will be inserted but pop-up will not closed, now click on “Cancel” button
Pop-up should be closed but it isn’t. We are facing the same issue.
Please do needful.