SmartGWT 对话框标题设置不正确

发布于 2024-10-25 06:26:03 字数 928 浏览 0 评论 0原文

我有一个扩展 SmartGWT 对话框的自定义对话框。我的问题是对话框的标题和关闭按钮不显示在对话框的标题中,而是显示在所有其他元素下的对话框内容中。

这是一个屏幕截图:

不正确的标题位置

粗体的 testx 按钮应该位于对话框的标题中。

我的代码基本上是:

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:

Incorrect title placement

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请爱~陌生人 2024-11-01 06:26:03

您的代码有问题。你已经用过

this.addMember(lab);

而不是

this.addItem(lab);

There is a problem with your code. You've used

this.addMember(lab);

instead of

this.addItem(lab);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文