Hide Grid Column in 6.x ExtJS Sencha Modern Grid use Painted-Event 1 2 3 4 5 6 7 8 onMyGridPainted: function(element, eOpts) { //hide grid column Modern Grid var gridCmp = Ext.getCmp('myGrid'); var column = gridCmp.getColumns()[0]; column.hide(); } Print