1

有一种方法可以在 smartgwt 中显示通知消息,类似于Vaadin提供的消息

PD:在另一个关于 GWT 的stackoverflow 问题中给出的解决方案似乎在 smartgwt 中无法正常工作。

4

1 回答 1

1

PD 建议的解决方案链接的问题是 zindex。SmartGWT 使用高 zindex 值来显示它的组件。

解决方案是在 show 中手动增加弹出窗口的 zindex:

public void show(int delayMilliseconds) {
    show();
    DOM.setIntStyleAttribute(getElement(), "zIndex", 1000000);
    startDelayedHide(delayMilliseconds);
}
于 2015-07-23T16:07:42.073 回答