SmartGWT 2.2; tested with Firefox 3.6.8, SRWare Iron 6.0.475 and IE8.
This works as expected:
This does not, the Dialog is modal but the modal mask is not applied:
Any ideas?
This works as expected:
Code:
Dialog dialog = new Dialog(); dialog.setShowModalMask(true); SC.warn("Error", "text", null, dialog);
Code:
Dialog dialog = new Dialog(); dialog.setShowModalMask(true); SC.ask("Error", "text", null, dialog);
Comment