When I tried to reconfigure the grid with columns and stores, It is locking/freezing grid column level menu
grid.reconfigure(store, cols);
please provide your suggestion to address this issue.
When I tried to reconfigure the grid with columns and stores, It is locking/freezing grid column level menu
grid.reconfigure(store, cols);
please provide your suggestion to address this issue.
Below script worked for me :
Ext.define('Overrides.grid.filters.Filters', {
override: 'Ext.grid.filters.Filters',
onReconfigure: function(grid, store, columns, oldStore) {
var me = this;
me.sep = Ext.destroy(me.sep);
if (me.menuItems && me.menuItems[grid.id]) {
me.menuItems[grid.id].destroy();
}
me.callParent(arguments);
}
});