Community
Participate
Working Groups
In SWT when the browser widget gets disabled( "setEnabled( false )"), the user can no longer interact with the browser content. We should do the same in RAP. There actually already are "block()" and "release()" implementations in IFrame.js, we just have to use them.
As disabled browser would then probably also support different mouse-cursors.
For some reasion release() is alrady called Browser#_onload. This is probably incorrect.
(In reply to comment #2) > For some reasion release() is alrady called Browser#_onload. This is probably > incorrect. If I remember correctly, this release() call is added here to avoid two clicks to activate a link in the browser - first click was needed to remove the blocker.
Fixed in CVS HEAD by overwritting the _applyEnabled method to block/release the blocker. I removed the release() in Browser#_onload as it does not make any change.