Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,在 vaadin 组合框中,我只添加了一项默认情况下处于选择状态的项目。所以现在不需要下拉选项。有什么办法可以禁用组合框中的下拉选项?
问候,维涅什
如果它只有一个选项,您可以尝试将组合框设置为只读或禁用。combobox.setReadOnly(true) 将使它看起来像一个标签,而 combobox.setEnabled(false) 将它变灰并禁用下拉菜单。
好吧,你想展示什么?只是一个标签?然后检查您添加到组合框的容器大小是否为 1 并显示一个带有唯一“选项”的标签。