I currently have no access to the column header menu xtype (since it is not exposed?), and for that reason I cannot add a listener to it in order to catch a checkchange event.
{
xtype: 'gridcolumn',
id: 'stagesEnteredQueue',
align: 'center',
dataIndex: 'enteredQueue',
text: 'Entered Queue',
format: 'd/m/Y',
filter: {
type: 'datetime',
format: 'd/m/Y',
},
renderer: function (val, metaData, record) {
val = Ext.Date.format(val, 'd/m/Y, H:i:s');
return val;
},
minWidth: 150,
flex: 1
}
How can I catch a check/uncheck event on the column header filter menu? The changes to the store filter it is automatically executing need to be changed due to business rules of my app.