删除Extjs中GridPanel的标题工具栏
我在 Extjs 中有一个 GridPanel,我只想删除或隐藏其标题工具栏。 (标题和搜索框所在的工具栏)。我只希望 Gridpanels 第一个元素是列标题。我该怎么做呢?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Ext.grid.GridPanel 的 hideHeaders 属性可以解决这个问题。
hideHeaders property of Ext.grid.GridPanel does the trick.
您是否尝试过将 header 配置选项设置为 false?请参阅下面的示例:
Have you tried setting the header config option to false? See below example:
如果找不到合适的配置选项,稍后调用 gridPanel.getTopToolbar().hide() 应该可以解决问题。
If you can't find a suitable config option, calling
gridPanel.getTopToolbar().hide()
afterwards should do the trick.