Hi Isomorphic,
please see this modified testcase (v12.0p_2020-03-24) of a behavior we also observe in our application:
Depending on the order of "Show filter" and "Unhide fields" the result is different:
"Unhide fields" -> "Show filter" (OK):
"Show filter" -> "Unhide fields" (Not OK):
Here also the (default) filter symbol is removed on click on it ("Item", expected), while this does not happen if it is not the default operator ("SKU", expected???)
Best regards
Blama
please see this modified testcase (v12.0p_2020-03-24) of a behavior we also observe in our application:
Code:
isc.ListGrid.create({ ID:"dsListGrid", width: "100%", height: 500, autoFetchData: true, dataSource: "supplyItem", // allowFilterExpressions: true, fields:[ {name:"itemID", width:60}, {name:"itemName", hidden:true, defaultOperator: "iContains", operator: "iContains"}, {name:"SKU", hidden:true, defaultOperator: "equals", operator: "equals"}, {name:"category", defaultOperator: "equals", operator: "equals"}, {name:"units"} ] }); isc.IButton.create({ top: 510, ID:"filterButton", title:"Filter", click : function () { dsListGrid.setShowFilterEditor(!dsListGrid.showFilterEditor); } })
"Unhide fields" -> "Show filter" (OK):
"Show filter" -> "Unhide fields" (Not OK):
Here also the (default) filter symbol is removed on click on it ("Item", expected), while this does not happen if it is not the default operator ("SKU", expected???)
Best regards
Blama
Comment