ext 3.4 グリッド フィルター プラグインを使用して、並べ替え可能なグリッドが動作しています。アクティブな列をデフォルトにして、真の値をフィルタリングしたいと思います。非アクティブなレコードが必要なユーザーは、フィルターを削除できます。デフォルトのフィルター列と値を指定するにはどうすればよいですか?
前もって感謝します!
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'
    }]