将 ToolTip(描述)添加到 Vaadin ComboBox 不起作用,为什么?

发布于 2024-12-08 14:45:12 字数 526 浏览 1 评论 0原文

我用 cb.setDescription("text") 尝试过,但没有效果。所以我在网上搜索但找不到任何相关内容,为什么它不起作用?

这是代码:

ComboBox cb = new ComboBox();
cb.setSizeUndefined();`
cb.setInputPrompt("xyz");
cb.addItem("x");
cb.addItem("y");
cb.setItemCaption("x", "xxx");
cb.setItemCaption("y", "yyy");
cb.setInvalidAllowed(false);
cb.setNullSelectionAllowed(false);
cb.setNewItemsAllowed(false);
cb.setStyleName('xyz');
cb.select("x");
cb.setEnabled(false);
cb.setDescription("tooltiptext");
layout.addComponent(cb);        

I tried it with cb.setDescription("text") but it has no effect. So I searched the web but couldn't find anything about, why doesn't it work?

Here's the code:

ComboBox cb = new ComboBox();
cb.setSizeUndefined();`
cb.setInputPrompt("xyz");
cb.addItem("x");
cb.addItem("y");
cb.setItemCaption("x", "xxx");
cb.setItemCaption("y", "yyy");
cb.setInvalidAllowed(false);
cb.setNullSelectionAllowed(false);
cb.setNewItemsAllowed(false);
cb.setStyleName('xyz');
cb.select("x");
cb.setEnabled(false);
cb.setDescription("tooltiptext");
layout.addComponent(cb);        

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

水中月 2024-12-15 14:45:12

可能与此问题有关。现在,它仅在鼠标悬停在 cobmobox 按钮上时显示,但在文本字段上不显示。

May be it connected with this issue. Right now it shown only on mouse over for cobmobox button, but not textfield.

嘿嘿嘿 2024-12-15 14:45:12

我不相信您可以使用它 setEditable(false) 并获得标题,因此请尝试使用 setEnabled(true) 并使用 setImmediate(true)

I dont belive you can have it setEditable(false) and get a caption so try with setEnabled(true) and also use setImmediate(true)

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