对于 Vaadin 组合框,我需要显示一个值并设置另一个值

发布于 2024-10-20 09:06:57 字数 230 浏览 6 评论 0原文

我有 Vaadin 组合框,其中包含以下项目

Application
Federation
Innovation

当用户从下拉框中选择应用程序时,我需要以类似的方式设置 APP

Federation - FED
Innovation - INV

因此,当我只获取所需的短代码而不是整个名称时。如何实现这一目标?

I have Vaadin Combo Box with below items

Application
Federation
Innovation

When the user selects Application from the dropdown box I need to set APP in the similar way

Federation - FED
Innovation - INV

So when I fetch the need only short code of it not the entire name. How to achieve that?.

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

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

发布评论

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

评论(1

羁〃客ぐ 2024-10-27 09:06:57

这个基本案例你可以这样做:

ComboBox cb = new ComboBox();
cb.addItem("FED");
cb.setItemCaption("FED", "Federation");
cb.addItem("INV");
cb.setItemCaption("INV", "Innovation");
main.addComponent(cb);

// to show the value:
cb.setImmediate(true); // update the label immediatly
Label selected = new Label(cb);
main.addComponent(selected);

但我真的建议你了解 Vaadin 中的项目和属性。 ComboBox 中的每个选项(以及 Vaadin 中的许多其他组件)都是一个可以具有任意数量属性的 Item。您可以将这些属性中的任何一个显示为组合框中的项目标题。

有关详细信息,请参阅本书

This basic case you can do like this:

ComboBox cb = new ComboBox();
cb.addItem("FED");
cb.setItemCaption("FED", "Federation");
cb.addItem("INV");
cb.setItemCaption("INV", "Innovation");
main.addComponent(cb);

// to show the value:
cb.setImmediate(true); // update the label immediatly
Label selected = new Label(cb);
main.addComponent(selected);

But I really recommend you get to know Items and Properties in Vaadin. Each selection in the ComboBox (and many other components in Vaadin) is an Item that can have any number of properties. You could show any of those properties as item caption in the ComboBox.

See the book for more info.

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