Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
headerclickまたはheaderdblclickイベントをExt.grid.GridPanelにアタッチする方法を教えてください。
リスナーの構成(構成時)または.on()メソッド(グリッド参照を使用)のいずれかを使用できます。
{ xtype: 'grid', listeners: { 'headerclick': { fn: function(grid, col, e){ // whatever }, scope: this } } }
また
myGrid.on('headerclick', function(grid, col, e){ // whatever });