Hi,
we noticed that when we use a MultiComboBoxItem without a data source, the property addUnknownValues is ignored - you can always add values even if it's set to false.
This behavior does not occur when using a MultiComboBoxItem combined with a data source, therefore the example https://www.smartclient.com/smartcli...tiComboBoxItem works perfectly.
Code to reproduce:
This is reproducable in the latest release of Smartclient 11.1 (SmartClient_v111p_2019-03-14_Pro)
Best regards
we noticed that when we use a MultiComboBoxItem without a data source, the property addUnknownValues is ignored - you can always add values even if it's set to false.
This behavior does not occur when using a MultiComboBoxItem combined with a data source, therefore the example https://www.smartclient.com/smartcli...tiComboBoxItem works perfectly.
Code to reproduce:
Code:
var suppliesForm = isc.DynamicForm.create({ ID: "selectedSupplyItems", width: "100%", numCols: 1, titleOrientation: "top", items: [{ name: "supplies", title: "Items", editorType: "MultiComboBoxItem", comboBoxProperties: { pickListWidth: 290 }, valueMap: ["Value 1", "Value 2"], addUnknownValues: false }] }); isc.VLayout.create({ width: "100%", members: [selectedSupplyItems] })
Best regards
Comment