I have a GridPanel
in Extjs
and i just want to remove or hide its header toolbar. (The toolbar where the title and the searchbox is in). I just want the Gridpanels
first element to be the column headers. How can I do it?
4
votes
3 Answers
2
votes
11
votes
3
votes
Have you tried setting the header config option to false? See below example:
var grid = new Ext.grid.GridPanel({
store: store,
cm: cm,
header: false,
renderTo: 'mygrid',
width: 600,
height: 300
});