Hi,
hoping you can help please.
Note?: I am using
Base aspx (AllocatedContacts) loads a rad window (Unallocated Contacts), which loads another radwindow(TabbedCreateContact) which loads another RadWindow (PhotoUpload) which contains an asp FileUpload control.
I browse get the file successfully, and then on closing the last RadWindow(PhotoUpload) ........
I get an IE7 popup dialog, saying
"To display the webpage again, Internet explorer needs to resnd the Information you've previously submitted. If you were making a purchase ...blah blah
with Retry + Cancel buttons.
Strangely though , if I Go from AllocatedContacts and load RadWindow(TabbedCreateContact) and then to RadWindow PhotoUpload, I browse, get image and close / refresh successfully without the IE7 Popup problem.
and then closing / refeshing down the chain is also fine.
but adding a 3rd radW (as the 1st RadW in the chain), (the rest then remain the same), fails with the IE7 dialog.
and,..
I do use the following means to close the radwindows. as oppsed to the Telerik example (GetRadWindow().Close(); )..
Thanks
Neal
hoping you can help please.
Note?: I am using
function RefreshParentPage()
{
GetRadWindow().BrowserWindow.location.reload();
}
called from function CloseOnReload (as per Telerik examples), which works fine in all other situations.Base aspx (AllocatedContacts) loads a rad window (Unallocated Contacts), which loads another radwindow(TabbedCreateContact) which loads another RadWindow (PhotoUpload) which contains an asp FileUpload control.
I browse get the file successfully, and then on closing the last RadWindow(PhotoUpload) ........
I get an IE7 popup dialog, saying
"To display the webpage again, Internet explorer needs to resnd the Information you've previously submitted. If you were making a purchase ...blah blah
with Retry + Cancel buttons.
Strangely though , if I Go from AllocatedContacts and load RadWindow(TabbedCreateContact) and then to RadWindow PhotoUpload, I browse, get image and close / refresh successfully without the IE7 Popup problem.
and then closing / refeshing down the chain is also fine.
but adding a 3rd radW (as the 1st RadW in the chain), (the rest then remain the same), fails with the IE7 dialog.
and,..
I do use the following means to close the radwindows. as oppsed to the Telerik example (GetRadWindow().Close(); )..
function CloseOnReload()
{
var myTextField = document.getElementById('UploadBtn')
if(myTextField.value == "Close")
{
alert (
"Refresh and Close");
RefreshParentPage();
window.opener = self;
window.open(
'~/CloseDummyIE7.htm', '_self');
window.close();
}
}
Thanks
Neal