How to sow multiple option elements in SelectItem in smartgwt?

I am trying to disable several option elements in SelectItem in smartgwt, but could not find a suitable API. Please, help.

+3
source share
3 answers

Use the DataSource parameter to provide values ​​for SelectItem. You can then disable ListGridRecords using the ListGrid.recordEnabledProperty function, or if you are just inactive but not disabled, use SelectItem.setPickListFields () to set the formatting and override the style.

+3
source

Can you tell me why you want to do this? If you want some options not to be selected, do not include them in selectItem.

0
source

You can reset the grid and turn it off.

0
source

All Articles