1

グリッド列ヘッダーのフィルター オプションは ext js 4.2.0.633 では機能しませんが、extjs-4.1.1 ではうまく機能します

ここに画像の説明を入力

これは私が使用しているコードです

Ext.define('Qreda.view.response.DndGrid', 
 extend : 'Qreda.view.BaseRemoteGrid',
 store : 'OptInOutConfigs',
 alias : 'widget.dndgrid',
 frame : true,

initComponent : function() {
this.columns = [{
    header : 'Keyword',
    dataIndex : 'keyword',
    renderer : function(value, metaData, record) {
        return value ? value.name : null;
    },
    filterable : true
    }, {
        header : 'trigger Keyword',
        dataIndex : 'triggerKeyword',
        filterable : true
    }, {
    header : 'Category',
    dataIndex : 'categoryId',
    filter : {
        type : 'list',
        store : Ext.getStore('CgCategories'),
        labelField : 'categoryName'
    }
    }];

    this.callParent();
    this.setTitle('MENU_DND_MANAGEMENT');
    this.on('beforerender', function(component, options) {
        Ext.getStore('CgCategories').load();
    }, this);
}

});

誰かがこれを解決するのを手伝ってください

4

3 に答える 3

1

ext js 4.2.0.633 ディストリビューションと共に提供されるグリッド フィルター用の js ファイルを使用してください。これらは、examples/ux/grid/filter & examples/ux/grid/menu & ux/grid フォルダーにあります。

于 2013-03-26T11:21:42.020 に答える
0

列グリッド フィルター プラグインは、Ext JS 4.1 バージョンまで動作します。

ExtJS 4.2 では機能しません。

于 2013-11-22T08:08:29.530 に答える
0

examples/ux/grid/filter を要求し、機能として定義します。

// ...
features: [{
    ftype: 'filters'
}]
// ...
于 2013-06-28T18:59:26.020 に答える