Hi,
is there a way to make a MultiComboBoxItem's select component visually disappear in a form (leaving just the label and the buttons)? This would be nice in cases that form is read only.
I tried the following:
to no avail (i.e. there now is a gap where the MultiComboBoxItem lived).
Thanks,
fatzopilot
is there a way to make a MultiComboBoxItem's select component visually disappear in a form (leaving just the label and the buttons)? This would be nice in cases that form is read only.
I tried the following:
Code:
ComboBoxItem cbd = myMultiComboBoxItem.getComboBoxDefaults(); cbd.setWidth(1); cbd.setVisible(false); myMultiComboBoxItem.setComboBoxProperties(cbd);
Thanks,
fatzopilot
Comment