From the showcase:
http://www.smartclient.com/#multiComboBoxItem
As you can see, the item "supplies" has the value ["58074604", "90600", "1089400", "6024900"]
The combo box is contained in the form "selectedSupplyItems"
When calling
the result is {}.
This should contain "supplies: [....]"
But, you can call
and get the correct value.
This appears to be a bug that the field values for MultiComboBox-es are not propagated to the form.
http://www.smartclient.com/#multiComboBoxItem
As you can see, the item "supplies" has the value ["58074604", "90600", "1089400", "6024900"]
The combo box is contained in the form "selectedSupplyItems"
When calling
Code:
selectedSupplyItems.getValues()This should contain "supplies: [....]"
But, you can call
Code:
selectedSupplyItems.getField( 'supplies' ).getValue()This appears to be a bug that the field values for MultiComboBox-es are not propagated to the form.