1
Pouvez-vous me dire comment attacher l'événement headerclick ou headerdblclick à Ext.grid.GridPanel?comment attacher l'événement headerclick pour Ext.grid.GridPanel dans extjs?
Pouvez-vous me dire comment attacher l'événement headerclick ou headerdblclick à Ext.grid.GridPanel?comment attacher l'événement headerclick pour Ext.grid.GridPanel dans extjs?
Vous pouvez utiliser la méthode listeners config (au moment de la configuration) ou .on() (avec une référence de grille).
{
xtype: 'grid',
listeners: {
'headerclick': {
fn: function(grid, col, e){
// whatever
},
scope: this
}
}
}
ou
myGrid.on('headerclick', function(grid, col, e){
// whatever
});