Hi Isomorphic,
please see this modified sample (v12.0p_2019-01-07):
As you can see, the design for the filterRow item is broken from the start and even more, once you start to select entries.
It does work with the commented out MultiSelectItem, but what do you do in this case if this list gets to long, e.g. in case of a product list.
Right now I have TextItem with iContains. With the current FormItemCriterionGetter I could build also a OR (contains "Value1"; contains "Value2") by splitting after a space, but now a customer asked for a clickable solution.
This might be related to this issue, where a similar problem exists when using MultiComboBoxItem as an editor.
Best regards
Blama
please see this modified sample (v12.0p_2019-01-07):
Code:
isc.ListGrid.create({ ID:"dsListGrid", width: "50%", height: "100%", autoFetchData: true, canEdit: true, dataSource: "supplyItem", showFilterEditor: true, fields:[ {name:"itemID"}, {name:"itemName"}, // {name:"units", filterEditorProperties: { // multiple:true, // multipleAppearance:"picklist" // } // }, {name:"units", filterEditorType:"MultiComboBoxItem"}, {name:"unitCost"} ] });
It does work with the commented out MultiSelectItem, but what do you do in this case if this list gets to long, e.g. in case of a product list.
Right now I have TextItem with iContains. With the current FormItemCriterionGetter I could build also a OR (contains "Value1"; contains "Value2") by splitting after a space, but now a customer asked for a clickable solution.
This might be related to this issue, where a similar problem exists when using MultiComboBoxItem as an editor.
Best regards
Blama
Comment