我有一個使用ext 3.4網格過濾器插件的可工作的可排序網格。我想默認活動列來過濾真正的值。需要非活動記錄的用戶可以刪除過濾器。我如何指定默認篩選器列和值?如何設置Ext Grid Filter默認值?
在此先感謝!
colModel: new Ext.grid.ColumnModel({
defaults: {
sortable: true
// How do I specify a default filter value
//
// Only show active records unless the user changes the filter...
},
columns: [{
dataIndex:'f_uid',
id:'f_uid',
header:'ID',
hidden:true
}, {
dataIndex:'f_name',
id:'f_name',
header:'Name',
}, {
xtype:'booleancolumn',
dataIndex:'f_active',
id:'f_active',
header:'Active',
filterable:true,
trueText:'Active',
falseText:'Inactive'
}]
答案是在Filter.js源代碼。列定義中的過濾器對象可用於配置默認行爲。我不能回答。 – RandomSilo
filter:{value:1,active:true} – RandomSilo