Completed
Last Updated: 31 Jan 2014 09:47 by ADMIN
ADMIN
Marin Bratanov
Created on: 13 Jan 2014 12:49
Category: UI for ASP.NET AJAX
Type: Bug Report
1
FIX Under IE, when a RadWindow with RenderMode=Lightweight is closed with JavaScript, its resize handles remain available
This issue manifests only when JavaScript is used to close the control (i.e., oWnd.close()) and the [x] button in the titlebar works as expected. Clicking the handles makes the popup element visible, but it is not responsive (i.e., buttons in its titlebar cannot be clicked, it cannot be dragged, etd.).
A workaround is to add the following OnClientClose handler:
function OnClientClose(oWnd, args) {
	//hide remaining resizing handles in Lightweight render mode
	if (oWnd.view && oWnd.view.resizable && oWnd.view.resizable.repaint)
		oWnd.view.resizable.repaint();
	//other logic
}

A fix will be available in the Q1 2014 release.
0 comments