我正在尝试在GWTP中创建PopupPanel,如下所示:
import com.gwtplatform.mvp.client.PopupViewImpl;
public class MyPopupView extends PopupViewImpl implements
MyPopupPresenter.MyView {
..... general code here...
}
但有一个奇怪的是,为什么Google没有为setTitle
对象创建PopupViewImpl
,这使得PopupView看起来非常不专业,因为没有标题。
你能找到解决方案吗?
答案 0 :(得分:0)
使用DialogBox
并使用asWidget
方法将其返回。可以使用DialogBox#setText
方法设置弹出窗口的标题。