Announcement

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

    11.1p: Multiple SelectItem and filterOnKeypress: true bug

    Hi Isomorphic,

    please see this sample (now v11.1p_2017-11-24) and modify it as follows:
    Code:
    isc.ListGrid.create({
        ID: "countryList",
        width:550, height:300, alternateRecordStyles:true,
        dataSource: worldDS,
        fields:[
            {name:"countryCode", width:60},
            {name:"countryName"},
            {name:"capital"},
            {name:"continent",
    [B]filterEditorProperties:{
                    type:"select",
                    multiple:true,
            }[/B]},
            {name:"area"},
            {name:"population"}
        ],
        autoFetchData: true,
        showFilterEditor: true,
    [B]filterOnKeypress: true,[/B]
        allowFilterOperators: true,
        initialCriteria: { _constructor: "AdvancedCriteria", operator: "and",
            criteria: [
                { fieldName: "countryName", operator: "iNotContains", value: "i" },
                { fieldName: "capital", operator: "iNotStartsWith", value: "p" }
            ]
        }
    });
    Now, on filtering, the pickListWidth changes back and forth between column-width and normal-width:
    Click image for larger version

Name:	SelectItem picklist width on filtering.gif
Views:	70
Size:	95.5 KB
ID:	250526

    This happens in my application, but is not very important for me.

    Best regards
    Blama

    #2
    This has been fixed in SGWT 5.1p/SC 10.1p and newer releases. The fix will be in the nightly builds dated 2017-12-01 and beyond.

    Comment


      #3
      Hi Isomorphic,

      I can see that this is fixed in the online showcase using v11.1p_2017-12-01.

      Thank you & Best regards
      Blama

      Comment

      Working...
      X