Announcement

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

    isBlank filter not working on the empty String

    While filtering data of big size, we have handled the filtering operation in server side by calling valuesMatchCriteria method of Evaluator class

    if (ev.valuesMatchCriteria(objectAsMap, filterCrt)) {
    itemsMatchingCriteria.add(record);
    }

    where ObjectAsMap = { imageField=null, productName=, pb=null}
    and filterCrt = AdvancedCriteria:[and:[{productName isBlank}]]

    Whenever the productName = "", valuesMatchCriteria doesnot returns true.
    while if the productName = null, valuesMatchCriteria returns true and filters work.

    We are using
    <gwt.version>2.8.2</gwt.version>
    <gwt.maven.plugin.version>1.0-rc-9</gwt.maven.plugin.version>
    <smartgwt.version>6.1-p20170724</smartgwt.version>

    #2
    That's quite an old build - numerous fixes and enhancements have been made in this and related areas since then, and we see no issues against latest code.

    Please retest your case with the latest patch-build of your version from smartclient.com/builds.

    Comment


      #3
      Also, filtering large data sets with this method is a really bad idea. As we state in the docs, you don't want to use this method for filtering large sets of data, as there is no way that eliminating records in your Java server can be done at even 1/1000th of the speed of a SQL query, no matter how well we optimize the method. So you should abandon this approach now.

      Comment


        #4
        We have tested with the new build but still, the Evaluator class isn't able to filter the empty string when the operator is IsBlank.

        Comment


          #5
          We've made a change to address the issue with the isBlank operator. Please try the next nightly build, dated July 19.

          On the other hand, using Evaluator.valuesMatchCriteria() for large data sets is not a good idea for the commented reasons above (#3).

          Regards
          Isomorphic Software

          Comment

          Working...
          X