Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Window modal mask

    Hi,
    There seems to be a difference in the window mask opacity with the new release of SmartGWT in IE8, with the same value, the mask is more opaque than before. Is this a side effect of the performance improvement?

    Here is my code:

    Window glassPanel = new Window();
    glassPanel.setTitle(Messages.get("loading"));
    glassPanel.setWidth(90);
    glassPanel.setHeight(23);
    glassPanel.setShowCloseButton(false);
    glassPanel.setShowMaximizeButton(false);
    glassPanel.setShowMinimizeButton(false);
    glassPanel.setIsModal(true);
    glassPanel.setShowModalMask(true);
    glassPanel.setModalMaskOpacity(10);

    Thank you

    Richard

    NOTE: I think that the MaskOpacity value is ignored in IE and it's using the 50% default value.
    Last edited by kobold27; 13 Jan 2011, 13:02. Reason: Got an idea?
Working...
X