Magento - 隐藏“重置过滤器”按钮和“搜索”

发布于 2024-11-07 21:07:53 字数 47 浏览 0 评论 0原文

如何在自定义模块网格中隐藏“重置过滤器”和“搜索”按钮?

谢谢。

how can I hide the buttons "Reset Filter" and "Search" in a custom module grid ?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

柠檬 2024-11-14 21:07:54

您可以通过以下方式控制各个按钮:

protected function _prepareLayout()
{
    $this->unsetChild('reset_filter_button');
    $this->unsetChild('search_button');
}

还有一个 export_button 子项。

You can control individual buttons with:

protected function _prepareLayout()
{
    $this->unsetChild('reset_filter_button');
    $this->unsetChild('search_button');
}

There is also an export_button child too.

碍人泪离人颜 2024-11-14 21:07:53

仅隐藏过滤器按钮

要仅隐藏“重置过滤器”和“搜索”按钮,但保留标题过滤器字段,您可以使用以下方法重写 Mage_Adminhtml_Block_Widget_Grid::getMainButtonsHtml()

public function getMainButtonsHtml()
{
    return '';
}

隐藏过滤器按钮和标题过滤器字段

如果您想隐藏整个过滤器内容,“重置过滤器”,“搜索”按钮标头过滤器字段,您可以使用 setFilterVisibility() 方法Mage_Adminhtml_Block_Widget_Grid

$this->setFilterVisibility(false);

Hide 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:

public function getMainButtonsHtml()
{
    return '';
}

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 of Mage_Adminhtml_Block_Widget_Grid:

$this->setFilterVisibility(false);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文