Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    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"}
                ]
            })
        ]
    });
    Click image for larger version

Name:	CS-filtering.gif
Views:	49
Size:	325.8 KB
ID:	269915

    #2
    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

    Comment


      #3
      Thanks for the nudge - this is assigned and we'll get to it shortly and update here when we do.

      Comment

      Working...
      X