1

I am working with SmartGwt.

Is it possible to hide the combobox dropdown button if it has only one Item?

4

3 に答える 3

3

のようなプロパティsetShowPickerIcon(false)を使用します。このプロパティを使用すると、SelectPicker Icon ドロップダウン ボタンが非表示になります。

于 2012-09-25T09:12:25.310 に答える
0

Imho, it is not possible, but you can replace it with TextItem which has no dropdown button dynamically. Either by invoking setVisible(false/true) or by removing/adding it from/to the form.

于 2012-08-29T16:08:51.880 に答える
0

変更リスナーを追加します。要素が 1 つしかない場合は、 を呼び出しますsetVisible(false)

于 2012-08-24T13:25:58.560 に答える