In sample http://www.smartclient.com/#comboBoxStyled try following code. When addUnknownValues is false and you choose item in comboBox with mouse comboBox is after selection reopened. Also when you select item with mouse click value sometime disappear from combo. Is it normal? Can we change this to normal behavior (like when addUnknownValues is true)?
Code:
isc.DynamicForm.create({ ID:"testForm", width: 500, fields : [ { name: "itemName", title: "Item Name", editorType: "comboBox", addUnknownValues:false, optionDataSource: "supplyItem", width: 250, pickListCellHeight: 50 }] });
Comment