Completed
Last Updated: 06 Jun 2016 09:59 by ADMIN
ADMIN
Marin Bratanov
Created on: 15 Apr 2013 10:16
Category: Window
Type: Bug Report
0
RadWindow's getWindowBounds() method does not return proper values for a maximized RadWindow
Instead, the dimensions the popup will have when restored are returned. This is so because a maximized RadWindow will resize with the browser.

A possible workaround is using the Telerik Static Client Library: http://www.telerik.com/help/aspnet-ajax/telerik-static-client-library.html

			var wnd = $find("RadWindow1");
			wnd.maximize();
			var bounds = $telerik.getBounds(wnd.get_popupElement());
			alert(bounds.width);
0 comments