SmartGWT 对话框标题设置不正确
我有一个扩展 SmartGWT 对话框的自定义对话框。我的问题是对话框的标题和关闭按钮不显示在对话框的标题中,而是显示在所有其他元素下的对话框内容中。
这是一个屏幕截图:
粗体的 test 和 x 按钮应该位于对话框的标题中。
我的代码基本上是:
public class MyDialog extends Dialog {
public MyDialog() {
super();
this.setTitle("test");
this.setShowTitle(true);
this.setShowCloseButton(true);
this.setShowMaximizeButton(false);
this.setShowMaximizeButton(false);
this.setShowStatusBar(false);
this.setShowShadow(true);
this.setWidth("500px");
this.setHeight("300px");
}
@Override
protected void onInit() {
Label lab = new Label("test");
this.addMember(lab);
}
}
这是 SmartGWT 中的错误还是我遗漏了什么?如何正确放置标题?
感谢您的帮助!
I have a custom dialog that extends the SmartGWT dialog. My problem is that the title and the close button of the dialog aren't displayed in the dialog's title but in the dialog's content under all other elements.
Here is a screeshot:
The bold test and the x button should be in the dialog's title.
My code basically is:
public class MyDialog extends Dialog {
public MyDialog() {
super();
this.setTitle("test");
this.setShowTitle(true);
this.setShowCloseButton(true);
this.setShowMaximizeButton(false);
this.setShowMaximizeButton(false);
this.setShowStatusBar(false);
this.setShowShadow(true);
this.setWidth("500px");
this.setHeight("300px");
}
@Override
protected void onInit() {
Label lab = new Label("test");
this.addMember(lab);
}
}
Is this a bug in SmartGWT or am I missing something? How can I place the title correctly?
Thanks for any help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的代码有问题。你已经用过
而不是
There is a problem with your code. You've used
instead of