GWTP中的PopupViewImpl是否有setTitle方法?

时间:2014-07-13 05:49:39

标签: gwt gwtp

我正在尝试在GWTP中创建PopupPanel,如下所示:

import com.gwtplatform.mvp.client.PopupViewImpl;
 public class MyPopupView extends PopupViewImpl implements
    MyPopupPresenter.MyView {
    ..... general code here...
}

但有一个奇怪的是,为什么Google没有为setTitle对象创建PopupViewImpl,这使得PopupView看起来非常不专业,因为没有标题。

你能找到解决方案吗?

1 个答案:

答案 0 :(得分:0)

使用DialogBox并使用asWidget方法将其返回。可以使用DialogBox#setText方法设置弹出窗口的标题。