1
그리드에 검색 플러그인을 사용하고 싶습니다. 검색 플러그인에 대한 가져 오기가 필요합니다. 문서에서 찾을 수있는 것은 : Ext.ux.grid.Search입니다.Ext.ux.grid.Search가 Extjs에서 작동하지 않습니다. 4.2
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'
})
],
그러나 내가 오류는 다음과 같습니다 라인
new Ext.ux.grid.Search({
어떤 아이디어에 대한
Uncaught TypeError: undefined is not a function
?