网格列上的Extjs过滤器无法正常工作?

时间:2015-02-05 19:04:35

标签: extjs

我正在尝试在ext网格列中添加过滤器,但它不起作用,将非常感谢帮助。

下面是网格代码。

{
xtype : 'gridpanel',
border: false,
title : 'Users',
store : Store,
features: [{
            ftype : 'filters',
            paramPrefix : 'filterParam',
            autoReload : false,
            local : false,
            showMenu: false,
            filters:[{
                type: 'string',
                dataIndex: 'value'
            }] 
}],
columns: [
    {text: 'Name',  dataIndex: 'value', flex: 1, filterable: 'true',
         items: {
             xtype: 'textfield',
             name: 'value',
             width : '100%',
             align: 'center',
             margin: '0 2 2 2'}
         },
    {text: 'GID',  dataIndex: 'key'}],

height: '100%',
width: '100%',   
}

我尝试在上面的代码之上添加以下代码,但没有运气。

Ext.Loader.setConfig({
    enabled: true,
    paths: {
        'Ext.ux': './ext/ux'
    }
});
Ext.require(['Ext.ux.grid.FiltersFeature']);

0 个答案:

没有答案