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!!!

Was it helpful?

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();

OTHER TIPS

The method you're looking for is hide:

Ext.getCmp("mainfield").hide();
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top