将 ToolTip(描述)添加到 Vaadin ComboBox 不起作用,为什么?
我用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可能与此问题有关。现在,它仅在鼠标悬停在 cobmobox 按钮上时显示,但在文本字段上不显示。
May be it connected with this issue. Right now it shown only on mouse over for cobmobox button, but not textfield.
我不相信您可以使用它
setEditable(false)
并获得标题,因此请尝试使用setEnabled(true)
并使用setImmediate(true)
I dont belive you can have it
setEditable(false)
and get a caption so try withsetEnabled(true)
and also usesetImmediate(true)