将选择下拉列表设为不可写
我正在使用 Vaadin 框架用 Java 编写 GUI,有一个关于调整下拉列表行为的问题。
使 Select 不可写类型的下拉列表正确的属性操作是什么。也就是说,当选择时,我不希望“写入标记”在等待输入的列表中闪烁,而是让下拉列表展开这样的操作。
我尝试过使用 searchDropDown.setReadOnly(true);
但这完全关闭了下拉行为......
有人有任何想法......? =)
谢谢!
I'm programming a GUI in Java using the Vaadin framework having a question about adjusting the behaviour of a drop down list.
What is the correct property action to make a drop down list of the type Select none-writeable. That is, when selected I don't want the "write-marker" to flash in the list expecting input but rather have the drop down list expand on such an action.
I've tried with searchDropDown.setReadOnly(true);
but that turned off the drop down behaviour completely...
Anyone have any ideas...? =)
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 NativeSelect 而不是 组合框?
Try using a NativeSelect instead of ComboBox?