2

我已将默认远程过滤器添加到“hiddenFlag”列的网格中,但它在第一次加载时不活动。当我单击列标题菜单时,过滤器似乎处于活动状态,但现在记录是合适的。我应该停用并再次激活它。

过滤器似乎处于活动状态,但事实并非如此!

怎么样,我也可以将它配置为在第一次加载时处于活动状态?

Ext.define('Ext.migration.CommentGrid', {
    extend: 'Ext.grid.Panel',
    alias: 'widget.commentgrid',            
    xtype: 'grid',
    initComponent: function(){
        filePath = "";
        this.filters = {
                ftype: 'filters',
                encode: false, // json encode the filter query
                local: false, //only filter locally
                filters: [{
                    type: 'numeric',
                    dataIndex: 'id'
                }, {
                    type: 'boolean',
                    dataIndex: 'publishableFlag'
                }, {
                    type: 'boolean',
                    dataIndex: 'hiddenFlag',
                    value:0,
                    active:true
                }
                ]
            };        
        Ext.apply(this, {
            iconCls: 'icon-grid',
            features: [this.filters],
            selType: 'rowmodel',
            columns: [
                {
                    text: 'ID',
                    hideable: false,
                    dataIndex: 'id'
                },
                {
                    xtype: 'checkcolumn', 
                    text: 'Yayınlandı mı?',
                    dataIndex: 'publishableFlag'
                },
                {
                    xtype: 'checkcolumn', 
                    text: 'Gizle',
                    dataIndex: 'hiddenFlag',
                    filter: {
                        value:0,
                        active:true
                    }
                }
            ]
        });
        this.callParent();
    },
    listeners:{
        'afterrender': function(a,b,c){
            //Ext.getCmp()
            console.log("after render", this);

        }
    },
    bbar: Ext.create('Ext.PagingToolbar', {
        store: commentStore,
        displayInfo: true
    })
});
4

1 回答 1

2

确保在afterrender事件中创建过滤器,例如:

listeners:{
    'afterrender': function(grid){
        grid.filters.createFilters();
    }
},

如果这不能处理它,您还可以以编程方式设置过滤器(而不仅仅是使用配置)。如本答案所述

于 2013-02-20T00:08:22.757 回答