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.
I am working with SmartGwt.
Is it possible to hide the combobox dropdown button if it has only one Item?
使用 like 属性setShowPickerIcon(false),如果我们使用这个属性,SelectPicker Icon 意味着下拉按钮将不可见。
setShowPickerIcon(false)
向它添加一个更改侦听器,如果它只有一个元素,请调用setVisible(false).
setVisible(false)
恕我直言,这是不可能的,但你可以用没有下拉按钮的 TextItem 动态替换它。通过调用 setVisible(false/true) 或从表单中删除/添加它。