What is the equivalent to the ExtJs3 Ext.grid.ColumnModel in ExtJs4?
Ext.grid.ColumnModel
What I want to do is hide a column, I did something like below in ExtJs3:
Another solution more flexible :
grid.down("[dataIndex="+di+"]").setVisible(v);
You can change dataIndex for another property like name or whatever.
dataIndex
name