データビューでスクロール イベントを設定しましたが、発生しません。スクロール可能な構成の残りの部分は問題ありませんが、リスナーの conf だけが考慮されていないようです。どんな手掛かり ?
{ itemId:'names',
xtype:'dataview',
disableSelection:true,
scrollable:{
direction:'vertical',
listeners:{
scroll:function(){
console.log('[scrollable][on scroll]');
},
scrollend:function( scroller, x, y, eOpts ){
console.log('[scrollable][on scrollend]x='+x+', y='+y);
}
}
},
store:{
fields:['name'],
data:[{name:'Cherif'}]
},
itemTpl:'{name}'
}