对于 Vaadin 组合框,我需要显示一个值并设置另一个值
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个基本案例你可以这样做:
但我真的建议你了解 Vaadin 中的项目和属性。 ComboBox 中的每个选项(以及 Vaadin 中的许多其他组件)都是一个可以具有任意数量属性的 Item。您可以将这些属性中的任何一个显示为组合框中的项目标题。
有关详细信息,请参阅本书。
This basic case you can do like this:
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.