SmartGWT中的通知消息

时间:2012-05-14 09:21:40

标签: gwt smartgwt

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

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

1 个答案:

答案 0 :(得分:1)

PD suggested solution link的问题是zindex。 SmartGWT使用高zindex值来显示它的组件。

解决方案是手动增加show:

中弹出窗口的zindex
public void show(int delayMilliseconds) {
    show();
    DOM.setIntStyleAttribute(getElement(), "zIndex", 1000000);
    startDelayedHide(delayMilliseconds);
}