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.
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
});
Comment