Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Hide a MultiComboBoxItem's select component

    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:
    Code:
    	    ComboBoxItem cbd = myMultiComboBoxItem.getComboBoxDefaults();
    	    cbd.setWidth(1);
    	    cbd.setVisible(false);
    	    myMultiComboBoxItem.setComboBoxProperties(cbd);
    to no avail (i.e. there now is a gap where the MultiComboBoxItem lived).

    Thanks,
    fatzopilot

    #2
    We've gone ahead and made it automatic that the text entry field is hidden when the control is canEdit:false. This will be in tomorrow's builds.

    Comment

    Working...
    X