Announcement

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

    Grid bug - filter doesn't work after hiding column

    Version: "9.0/LGPL Development Only"
    Browser: Chrome & IE 9

    Scenario:
    Can be reproduced on the SC feature explorer '...reference/SmartClient_Explorer.html#autofitFilter'

    Use a listgrid with filter editor showing where only one column has filtering enabled.
    Hide that column.
    Show that column.
    Filter for that column no longer works/draws.

    Code:
    isc.ListGrid.create({
        ID: "countryList",
        width:500, top:50, alternateRecordStyles:true,
        dataSource: worldDS,
        autoFetchData: true,
        fields:[
            {name:"countryName", title:"Country", canFilter: false},
            {name:"capital", title:"Capital"},
            {name:"continent", title:"Continent", canFilter: false}
        ],
        autoFitData: "vertical",
        showFilterEditor: true,
        autoFitMaxRecords: 10
    });

    #2
    Thanks for the report - this is fixed for nightly builds dated July 20 and later

    Comment


      #3
      Thank you.

      Comment

      Working...
      X