I need to show/hide columns of a grid on the fly, but it seems that ExtJs 4 has no implemented method for that.
In previous versions I should use columnModel, what d
The following should work:
Ext.getCmp('simpsons').down('[dataIndex=ColumnName]').setVisible(false);