I want to create object of "Ext.grid.header.Container" first and will do some operation on it and then want to assign it to GridPanel.
Can I create?
But, headerCt does not contain any object of header.Code:columns=[{ text:'Name', dataIndex:'name', sortable:false, hideable:false, flex:1},{ text:'Email', dataIndex:'email', hidden:true},{ text:'Phone', dataIndex:'phone', width:100} ]; var headerCt = new Ext.grid.header.Container(columns);
Help.