Announcement
Collapse
No announcement yet.
X
-
Thanks for the nudge - this is assigned and we'll get to it shortly and update here when we do.
-
Hi Isomorphic,
as there has been no answer for more than a month I'm wondering if you have seen this thread?
Best regards
Blama
Leave a comment:
-
12.1p+ bug with client side greaterOrEqual filtering and case sensitivity
Hi Isomorphic,
please see this modified sample (v12.1p_2023-03-26).
As you can see filtering clientside only (test starting with y, all data loaded) is case sensitive, but serverside (refreshData()-Button click) is not.
For a test starting with a b (no full cache) the behavior is different.
I'm not sure if this is a HSQLDB collation issue/mismatch or a JS framework issue.
Best regards
Blama
Code:isc.VStack.create({ membersMargin: 10, members: [ isc.IButton.create({ title: "refreshData()", click: function () { filterGrid.refreshData(); } }), isc.ListGrid.create({ ID: "filterGrid", showFilterEditor:true, filterOnKeypress:true, width:550, height:300, alternateRecordStyles:true, dataSource: worldDS, sortField:"countryName", autoFetchData: true, fields: [ {name:"countryCode"}, {name:"countryName", filterOperator:"greaterOrEqual"}, {name:"capital"}, {name:"population"} ] }) ] });
Tags: None
Leave a comment: