Announcement

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

    Filter "Between" in a grid

    Hello,

    How to use filter "between" for a any field in the grid?

    For example here:
    http://www.smartclient.com/smartgwt/...perator_filter

    I select filter "between" for "Area" field. In the field place I see a button with 3 dots. Where i should enter left and right value for "between" filter? I can't understand...

    Please give me answer ;)

    Best regards,
    Eugeny

    #2
    We're looking into ways of dealing with this situation better.

    In the meantime, you can just set grid.allowFilterExpressions: true, and then enter the full value in the editor - so, typing "1...100" into the editor will detect that its a "between" criteria and update the icon, but will not remove the "..." from the value, as it does with other operators - because there's no other way to enter a pair of separate range values.

    We'll update here in the near future when we decide on the best framework-level solution.

    Comment


      #3
      Hi Isomorphic,

      I have two comments to that sample as well:
      • This does not show the criteria, but applies them:
      Code:
      isc.ListGrid.create({
          ID: "countryList",
          width:550, height:300, alternateRecordStyles:true, allowFilterExpressions: true,
          dataSource: worldDS,
          fields:[
              {name:"countryCode", width:50},
              {name:"countryName"},
              {name:"capital"},
              {name:"continent"},
              {name:"area"},
              {name:"population"}
          ],
          autoFetchData: true,
          showFilterEditor: true,
          allowFilterOperators: true,
          initialCriteria: { _constructor: "AdvancedCriteria", operator: "and",
              criteria: [
                  { fieldName: "area", operator: "between", start: "10", end: "100" },
                  { fieldName: "capital", operator: "iNotStartsWith", value: "p" }
              ]
          }
      });
      • The icon (text?) for the filtering mode is not displayed correctly in the filter row. It seems to be wider than the available space, at least for the 2-char operators:
      Click image for larger version

Name:	operators.PNG
Views:	91
Size:	10.6 KB
ID:	245849


      This (closed) issue might be related.

      Best regards
      Blama

      Comment


        #4
        Yes, this is true - we'll make sure incoming criteria are properly parsed in this case. Can you confirm, though, that using the UI to enter a "between"criteria works as described previously?

        Comment


          #5
          Yes, manually filtering for "1...100" gives me this expected result:
          Click image for larger version

Name:	operators.PNG
Views:	83
Size:	12.0 KB
ID:	245852

          Best regards
          Blama

          Comment


            #6
            Actually, the problem is that "between" and "iBetween" are unavailable - if your criteria uses betweenInclusive/iBetweenInclusive instead, it will work as expected.

            We'll look into that too.

            Comment

            Working...
            X