Hello,
My problem
I would like to configure a ListGrid's FilterEditor to stop it from displaying values when canFilter is set to false, even when I filter the ListGrid with a criteria that filters on the field in question.
Example
To better understand my problem:
You should see a blue "u" in the FilterEditor cell for the countryCode column.
I would like to configure my ListGrid to make this "u" disappear.
Thanks in advance for any pointer,
-TylerGalt
My problem
I would like to configure a ListGrid's FilterEditor to stop it from displaying values when canFilter is set to false, even when I filter the ListGrid with a criteria that filters on the field in question.
Example
To better understand my problem:
- go to this page
- replace the code in the JS tab with the following:
Code:isc.ListGrid.create({ ID: "countryList", width:500, height:224, alternateRecordStyles:true, showAllRecords:true, dataSource: countryDS, autoFetchData: false, fields:[ {name:"countryCode", canFilter:false}, {name:"countryName", title:"Country"}, {name:"capital", title:"Capital"} ], showFilterEditor: true }); countryList.filterData({capital:"s", countryCode:"u"});
- click "Try It"
You should see a blue "u" in the FilterEditor cell for the countryCode column.
I would like to configure my ListGrid to make this "u" disappear.
Thanks in advance for any pointer,
-TylerGalt
Comment