Hi Isomorphic,
the feature added here has some issues - some might be by design, but one is a bug.
Please see this modified testcase (v12.0p_2020-03-24):
The issues happen in an open picklist or if it is collapsed and independent of multiple:true.
1) Type "Glue" in an open or closed picklist. In the end, the 4th entry is selected. I'd expect it to stay that the 1st entry is selected, but this might be by design and is also OK.
2) Type "Add" in a closed picklist. The 3rd "Add" entry is selected. This matches the behavior above.
3) Type "Add" in a open picklist. The 1st "D..." entry is selected in the end. I'd expect this to be as above instead.
This is because of the double-"d" I assume.
This is very minor, I just noticed it in our application testing some filters.
Best regards
Blama
the feature added here has some issues - some might be by design, but one is a bug.
Please see this modified testcase (v12.0p_2020-03-24):
Code:
isc.ListGrid.create({ ID:"dsListGrid", width: "100%", height: "100%", autoFetchData: true, dataSource: "supplyItem", showFilterEditor: true, fields:[ {name:"itemID", width:60}, {name:"itemName", filterEditorType:"SelectItem", filterEditorProperties: { // multiple:true, } }, {name:"SKU"}, {name:"category"}, {name:"units"} ] });
1) Type "Glue" in an open or closed picklist. In the end, the 4th entry is selected. I'd expect it to stay that the 1st entry is selected, but this might be by design and is also OK.
- g -> Glue UHU Clear Gum 250ml
- l ->Glue UHU Office Paste 250ml
- u ->Glue Pentel 30CC Roll On 30ml
- e ->Glue UHU Super Glue 3ml
2) Type "Add" in a closed picklist. The 3rd "Add" entry is selected. This matches the behavior above.
- a -> Adding Machine Roll 57x57mm Standard
- d -> Adding Machine Roll 57x64mm Standard
- d -> Adding Machine Roll 57x76mm Standard
3) Type "Add" in a open picklist. The 1st "D..." entry is selected in the end. I'd expect this to be as above instead.
- a -> Adding Machine Roll 57x57mm Standard
- d -> Adding Machine Roll 57x64mm Standard
- d -> Dictionary Macquarie Concise Thesaurus (157 x 245)
This is because of the double-"d" I assume.
This is very minor, I just noticed it in our application testing some filters.
Best regards
Blama
Comment