Extjs 3.2 Grid Filter不工作

时间:2014-03-18 09:20:51

标签: extjs extjs3

我是extjs的新手,我正在使用网格过滤器上的extjs3.2.Filter在每个标题下正确显示,但它不是Filterning

var store = new Ext.data.Store({
                    id : 'user',
                    autoDestroy: true,
                    url: 'site/view.action',
                    proxy : proxy,
                    reader : reader,
                    writer : writer, // <-- plug a DataWriter into the store
                                        // just as you would a Reader
                    autoSave : false,


                // <-- false would delay executing create, update, destroy
                // requests until specifically told to do so with some [save]
                // buton.
                });

这是我的GridFilter代码

 var filters = new Ext.ux.grid.GridFilters({
                     encode: true, // json encode the filter query
                     local: false,
                    filters:[
                 {type: 'string',  dataIndex: 'sapid'},
                 {type: 'numeric', dataIndex: 'orgid'},
                 {type: 'string',  dataIndex: 'companyCode'}

                             ]});

这是我的GridPanel代码

 var grid = new Ext.grid.GridPanel({
                        store : store,
                        disableSelection: true,
                        id : "documentsGrid",
                        columns : [{
                                    header : "SAP ID",
                                    width : 120,
                                    sortable : true,
                                    dataIndex : 'sapid',
                                    filter: {
                                        //type: 'numeric'  // specify type here or in store fields config
                                    },
                                    filterable: true,
                                    renderer: function (value, metaData, record, rowIndex, colIndex, store) {
                                         return  getToolTip(value, metaData, record, rowIndex, colIndex, store);
                                    },
                                    editor : {
                                        xtype : 'textfield',
                                        allowBlank : true
                                    }
                                    },
     plugins: [editor,filters],

有什么问题我无法理解

请帮助

由于

1 个答案:

答案 0 :(得分:0)

由于您指定过滤器不是本地过滤器,因此这意味着您必须具有服务器端过滤功能。如果您只想在客户端进行过滤,请指定local:true。

还要确保过滤器中使用的dataIndex确实引用了商店中的字段,并且没有遗漏任何内容。