Sencha过滤器网格列

时间:2019-10-24 12:52:00

标签: extjs filter filtering

我正在尝试找出如何过滤此列的方法,以便找到特定的楼层值(或所有值为“ 2”的楼层),然后通过单击特定按钮以升序/降序对它们进行排序。 我写了这段代码,但是它不起作用,因为当我在过滤器中写一个值时,他不给我任何行(同样,如果我尝试使用“ type:'string'”):

{
   text: "Floor",
   dataIndex: 'attributes',
   filter:{
       type: 'number',
       value : 'floor'
   },
   renderer: function (value) {
      return value['floor'];
   },

}

enter image description here

enter image description here

如何更改代码以使其正常工作?

2 个答案:

答案 0 :(得分:1)

您需要将dataIndex更改为非嵌套列。

您可以在模型中添加逻辑字段,例如:

 {
    name: "floor", "mapping": "attributes.floor"
}

在列中:

{
   text: "Floor",
   dataIndex: 'floor',
   filter:{
       type: 'number'
   }
}

已编辑-查看小提琴:https://fiddle.sencha.com/#view/editor&fiddle/30gr

Ext.application({
    name: 'Fiddle',

    launch: function () {
        Ext.Msg.alert('Fiddle', 'Welcome to Sencha Fiddle!');

        var store = Ext.create("Ext.data.Store", {
            fields: [{
                "name": "name",
                "type": "string"
            }, {
                "name": "floor",
                "mapping": function (data) {
                    console.log(data);
                    if (data && data.attributes && Ext.isNumber(data.attributes.floor)) {
                        return data.attributes.floor;
                    }
                    return null
                }
            }],
            data: [{
                "name": "A1",
                "attributes": {
                    "floor": 1
                }
            }, {
                "name": "B1",
                "attributes": {
                    "floor": 1
                }
            }, {
                "name": "A2",
                "attributes": {
                    "floor": 2
                }
            }, {
                "name": "A3",
                "attributes": {
                    "floor": 3
                }
            }, {
                "name": "ANU",
                "attributes": {
                    "floor": null
                }
            }, {
                "name": "AN"
            }]
        });

        Ext.create("Ext.grid.Panel", {
            renderTo: Ext.getBody(),
            width: 400,
            height: 500,
            store: store,
            columns: [{
                "dataIndex": "name",
                "text": "Name"
            }, {
                "dataIndex": "floor",
                "text": "Floor"
            }]
        })
    }
});

答案 1 :(得分:0)

我建议在数据模型中计算地板的值,而不要使用列渲染器。这样您就可以对该值进行过滤和排序。

您需要在模型上添加一个计算字段

fields: [{
    name: 'attributes'
}, {
    name: 'floor',
    calculate: function(data) {
        return data.attributes && Number(data.attributes.floor);
    }
}]

然后您的列变为

{
    text: "Floor",
    dataIndex: 'floor',
    filter:{
        type: 'number',
        value : 'floor'
    }
}