我知道我可以使用代码隐藏网格列标题。
#gridid .x-grid3-hd-row { display:none; }
但我不想使用任何CSS更改。如何使用JavaScript做同样的事情?
答案 0 :(得分:19)
你可以通过这种方式将其添加到 Ext.grid.GridPanel 来轻松完成:
hideHeaders: true
答案 1 :(得分:10)
您可以将hideHeaders
configuration option of the GridPanel
设置为true
。或者你的意思是在网格渲染后?
已修改:如果您要更改(或禁用)标头的创建方式,您还可以覆盖renderHeaders
或updateHeaders
GridView
。另一种方法是将templates
选项传递给GridView
,将header
值设置为空模板而不是默认值:
ts.header = new Ext.Template(
'',
'{cells}',
'
'
);
虽然默认实现在this.innerHd
中写入标头,innerHd
定义为this.mainHd.dom.firstChild
,如果this.mainHd
选项,则hideHeaders
设置为隐藏已设定。所以我希望该选项也会影响列标题。
编辑:我们在谈论什么版本的ExtJS?我看了the current source,我猜是3.1。
答案 2 :(得分:6)
只需将hideHeaders: true
添加到您的网格中即可。它应该工作
答案 3 :(得分:4)
您可以将其添加到网格定义中:
listeners: {
render: function(grid) {
grid.getView().el.select('.x-grid3-header').setStyle('display', 'none');
}
},
答案 4 :(得分:0)