PDA

View Full Version : column in grid columnModel won't hide



Bobafart
2 May 2007, 5:36 PM
I am trying to create a hidden column in my grid columnModel:



var cm = new Ext.grid.ColumnModel([
{header: "SoldierID", isHidden: true, dataIndex: 'troopId'},


with that code the column "SoldierID" remains visible -- although there is no data in the cells.

How do you make the column totally hidden?

tryanDLS
2 May 2007, 6:19 PM
The config entry is 'hidden', not 'isHidden'