Using VS2008 and 2009 Q1 version of the controls:
Web App has a masterpage with RadScriptManager and RadAjaxManager.
UserControls have a RadAjaxManagerProxy control.
The controls are dynamically loaded into forms and divs/controls within them resized according to function.
Within the MasterPage itself, window.onresize works correctly, however within my UserControls it does not.
In testing with a barebones control (nothing on it), window.onresize would never fire, but window.parent.onresize would.
But when I add the RadAjaxManagerProxy, the window.parent.onresize is no longer received.
If I use $addHandler:
Then the event is fired as expected.
Tested in IE7, Safari and Chrome, all with same results.
Is this a known issue or is there a better way to handle this?
Web App has a masterpage with RadScriptManager and RadAjaxManager.
UserControls have a RadAjaxManagerProxy control.
The controls are dynamically loaded into forms and divs/controls within them resized according to function.
Within the MasterPage itself, window.onresize works correctly, however within my UserControls it does not.
In testing with a barebones control (nothing on it), window.onresize would never fire, but window.parent.onresize would.
But when I add the RadAjaxManagerProxy, the window.parent.onresize is no longer received.
If I use $addHandler:
| $addHandler(window, 'resize', resize); |
Tested in IE7, Safari and Chrome, all with same results.
Is this a known issue or is there a better way to handle this?