Hi,
We have a solution where the main window contains iframes.
When the the main window opens a modal RadWindow and the user moves the RadWindow, while dragging the RadWindow all other iframes below the RadWindow is hidden. This looks kinda ugly.
I found the script code in the RadWindow that does this, the _setIframesVisible function in the ResizeExtender.
I tried to set the _hideIframes property in the ResizeExtender for my RadWindow in the show event:
if (this._window._resizeExtender)
this._window._resizeExtender.set_hideIframes(false);
After this, the moving of the window was a lot nicer...
Is there a special reason for this behavior (didn't see any comment in source code), or is it safe for me to set this property to false in script?
Regards
Caesar
We have a solution where the main window contains iframes.
When the the main window opens a modal RadWindow and the user moves the RadWindow, while dragging the RadWindow all other iframes below the RadWindow is hidden. This looks kinda ugly.
I found the script code in the RadWindow that does this, the _setIframesVisible function in the ResizeExtender.
I tried to set the _hideIframes property in the ResizeExtender for my RadWindow in the show event:
if (this._window._resizeExtender)
this._window._resizeExtender.set_hideIframes(false);
After this, the moving of the window was a lot nicer...
Is there a special reason for this behavior (didn't see any comment in source code), or is it safe for me to set this property to false in script?
Regards
Caesar