Question

in my GridPanel I have different Columns. Now I want dynamically set a few of them to hidden:true. I gave the columns ID's but I have no success on it. For example

Ext.getCmp("mainfield").setHidden(true);

Doesn't work. Any ides or help? THANK YOU!!!

Était-ce utile?

La solution

Try this:

grid.columns[columnIndex].hide();

or

grid.columns[columnIndex].setVisible(false);

To find column by id use down:

grid.down('gridcolumn#mainfield').hide();

Autres conseils

The method you're looking for is hide:

Ext.getCmp("mainfield").hide();
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top