Magento - 隐藏“重置过滤器”按钮和“搜索”
如何在自定义模块网格中隐藏“重置过滤器”和“搜索”按钮?
谢谢。
how can I hide the buttons "Reset Filter" and "Search" in a custom module grid ?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过以下方式控制各个按钮:
还有一个
export_button
子项。You can control individual buttons with:
There is also an
export_button
child too.仅隐藏过滤器按钮
要仅隐藏“重置过滤器”和“搜索”按钮,但保留标题过滤器字段,您可以使用以下方法重写
Mage_Adminhtml_Block_Widget_Grid::getMainButtonsHtml()
:隐藏过滤器按钮和标题过滤器字段
如果您想隐藏整个过滤器内容,“重置过滤器”,“搜索”按钮和标头过滤器字段,您可以使用
的
:setFilterVisibility()
方法Mage_Adminhtml_Block_Widget_GridHide filter buttons only
To only hide "Reset filter" and "Search" buttons, but keep the header filter fields, you could override
Mage_Adminhtml_Block_Widget_Grid::getMainButtonsHtml()
with:Hide filter buttons and header filter fields
If you want to hide the whole filter stuff, "Reset filter", "Search" button and the header filter fields, you could use the
setFilterVisibility()
method ofMage_Adminhtml_Block_Widget_Grid
: