2

这是我的第一篇文章,所以我可能在错误的线程中发帖,对此感到抱歉。

我想限制数字网格过滤器中的负值,只允许网格中的数字过滤器中的正数,我无法找到如何做到这一点。

这是我的代码

var myFilters =
{
    ftype     : 'filters',
    encode    : false,
    local     : false,
    extend    : 'Ext.data.Model',          
    filters    :
    [
        {
            type        : 'numeric',
            dataIndex    : 'utilization_per'
        }
    ]
};

deviceUtilGridPanel = new Ext.grid.GridPanel(
{
    features    : [myFilters],
    columns :
    [
          {id:'ru_utilization_per', header: "Utilization(%) (U)", sortable: true,     dataIndex: 'utilization_per', filterable: true, filter :{type:'numeric'},width:80}
    ]
});

任何帮助将不胜感激。

提前致谢。

4

1 回答 1

2

您可以使用menuItemCfgs过滤器上的配置来修改过滤器菜单使用的表单字段。

var myFilters = {
    ftype:   "filters",
    encode:  false,
    local:   false,
    filters: [{
        dataIndex:    "utilization_per",
        type:         "numeric",
        menuItemCfgs: {
            minValue: 1  // Or 0, or whatever you want
        }
    }]
};

作为旁注(与答案无关),您的代码存在一些问题。您不需要添加extend到您的过滤器配置,因为您没有扩展它,并且它不需要了解您的模型。header您的列定义中的配置已被弃用,而是支持text执行相同的操作。默认情况下,列是可过滤的,因此您不需要filterable: true. 如果您在过滤器功能配置中指定列过滤器,则无需在列级别指定它。

于 2012-09-19T17:19:50.833 回答