一个treegrid中的多个插件(失败) - Extjs 4.1

时间:2013-07-22 16:14:49

标签: plugins tree grid extjs4.1

我有一个treegrid和2个插件,如

        plugins: [
        {
            Ext.create('Ext.grid.plugin.CellEditing', {
                clicksToEdit: 1
            })
        },
        {
            ptype: 'treefilter',
            allowParentFolders: true
        }
        ]

如果我使用其中一个效果很好但是如果我同时使用它会得到像

这样的错误

enter image description here

如何修复此错误谢谢。

1 个答案:

答案 0 :(得分:1)

您将Ext.create括在大括号{}中。删除那些,你应该没事:

plugins: [
    Ext.create('Ext.grid.plugin.CellEditing', {
        clicksToEdit: 1
    }),
    {
        ptype: 'treefilter',
        allowParentFolders: true
    }
]