Hi Isomorphic,
please see this modified testcase (v12.1p_2023-06-14, v13.0p_2023-06-21) and notice in the video how the check mark for the filter operator in the filterRow context menu is missing after entering "~Ham".
Best regards
Blama

please see this modified testcase (v12.1p_2023-06-14, v13.0p_2023-06-21) and notice in the video how the check mark for the filter operator in the filterRow context menu is missing after entering "~Ham".
Best regards
Blama
Code:
isc.ListGrid.create({
ID: "countryList",
width: 550,
height: 300,
alternateRecordStyles: true,
dataSource: worldDS,
fields: [
{ name: "countryCode", width: 60 },
{ name: "countryName" },
{ name: "capital", defaultOperator: "equals" }, // Changed
{ name: "continent" },
{ name: "area" },
{ name: "population" }
],
autoFetchData: true,
showFilterEditor: true,
allowFilterOperators: true,
allowFilterExpressions: true, // Added
});
Comment