我想为我的网格使用搜索插件。搜索插件需要导入,根据我可以找到的文档: Ext.ux.grid.Search 。
Ext.require([
'Ext.data.*',
'Ext.grid.*',
'Ext.tree.*',
'Ext.ux.grid.FiltersFeature',
'Ext.toolbar.Paging',
'Ext.ux.grid.Search'
]);
然后,根据我的理解,您只需要在表格中添加插件即可。像这样:
plugins: [{
ptype: 'bufferedrenderer',
trailingBufferZone: 20, // Keep 20 rows rendered in the table behind scroll
leadingBufferZone: 50 // Keep 50 rows rendered in the table ahead of scroll
},
new Ext.ux.grid.Search({
iconCls:'icon-zoom'
,readonlyIndexes:['country']
,disableIndexes:['pctChange']
,minChars:1
,autoFocus:true
,mode:'local' // to filter on local; for remote add mode:'remote'
,width: '50'
})
],
然而,我得到的错误是:
未捕获的TypeError:undefined不是函数
为行
new Ext.ux.grid.Search({
有什么想法吗?
答案 0 :(得分:0)