Completed
Last Updated: 11 May 2015 10:37 by ADMIN
ADMIN
Marin Bratanov
Created on: 25 Jun 2014 12:08
Category: Window
Type: Bug Report
0
FIX Closing a RadWindow that has AutoSize and (Animations or DestroyOnClose enabled) by registering a script from the server in the content page causes a JavaScript error since Q2 2014
A workaround is to disable animations. You can do this in the control markup/code-behind or JavaScript depending on your case.

In case this is not an option, you can disable the animations prior to closing so that autosizing does not use them:
function CloseAndRebind() {
	GetRadWindow().BrowserWindow.refreshGrid();
	setTimeout(function () {
		var wnd = GetRadWindow();
		wnd.set_animation(0);//disable animations
		wnd.close();
	}, 0);
}

You can find the detailed discussion here http://www.telerik.com/forums/issue-with-radwindow-(2014-2-618-45)
1 comment
ADMIN
Misho
Posted on: 10 Jul 2014 15:16
The issue has been resolved and the fix will be available in Q2 2014 SP1 scheduled for the end of July