SmartClient Version: v13.1p_2025-06-06/AllModules Development Only (built 2025-06-06)
Hi, I think I’ve found an issue with the MultiComboBoxItem and implicitSaveOnBlur.
Basically, when I select a value from the pickList, the update is triggered before the selected value is actually incorporated into the formItem’s values, so the new value isn’t saved and disappears from the UI once the response comes back.
Sorry if the test case declares multiple: true on a field that’s not defined that way in the DataSource - I still think it’s useful to illustrate the problem:
In fact, if you select a value from the MultiComboBox, you’ll see it doesn’t get sent in the update.
Hi, I think I’ve found an issue with the MultiComboBoxItem and implicitSaveOnBlur.
Basically, when I select a value from the pickList, the update is triggered before the selected value is actually incorporated into the formItem’s values, so the new value isn’t saved and disappears from the UI once the response comes back.
Sorry if the test case declares multiple: true on a field that’s not defined that way in the DataSource - I still think it’s useful to illustrate the problem:
Code:
isc.DynamicForm.create({ ID: "selectedSupplyItems", dataSource:"supplyItem", width: "100%", numCols: 1, implicitSave: true, implicitSaveOnBlur: true, items: [ {name:"SKU"}, { name: "itemName", multiple:true, title: "Items", editorType: "MultiComboBoxItem", optionDataSource: "supplyItem", displayField: "itemName", valueField: "itemName" }] }).fetchData({itemID:2})