我有一个treegrid和2个插件,如
plugins: [
{
Ext.create('Ext.grid.plugin.CellEditing', {
clicksToEdit: 1
})
},
{
ptype: 'treefilter',
allowParentFolders: true
}
]
如果我使用其中一个效果很好但是如果我同时使用它会得到像
这样的错误
如何修复此错误谢谢。
答案 0 :(得分:1)
您将Ext.create
括在大括号{}
中。删除那些,你应该没事:
plugins: [
Ext.create('Ext.grid.plugin.CellEditing', {
clicksToEdit: 1
}),
{
ptype: 'treefilter',
allowParentFolders: true
}
]