Hi,
We have a question about ComboBoxItem. For SelectItem, if we set "allowEmptyValue" to be true, there will be an empty option in the drop down list. For ComboBoxItem, setting "allowEmptyValue" won't achieve the same behavior, since from the documentation the function of this property seems different from that for SelectItem .
We are wondering if there is any way to achieve the same behavior (an empty option in the drop-down list) for a ComboBoxItem. We are using SmartClient v8.3p_2014-10-18 build.
Thanks!
Robin
We have a question about ComboBoxItem. For SelectItem, if we set "allowEmptyValue" to be true, there will be an empty option in the drop down list. For ComboBoxItem, setting "allowEmptyValue" won't achieve the same behavior, since from the documentation the function of this property seems different from that for SelectItem .
We are wondering if there is any way to achieve the same behavior (an empty option in the drop-down list) for a ComboBoxItem. We are using SmartClient v8.3p_2014-10-18 build.
Thanks!
Robin
Code:
isc.DynamicForm.create({ width: 500, fields: [ {allowEmptyValue: true, title: "Ship to", type: "ComboBoxItem", valueMap: ["A","B"]}, {allowEmptyValue: true, title: "Ship from", type:"select", valueMap:["A","B"]} ] });
Comment