我设置magento的massAction用于Admin网格,我想知道如何摆脱为massAction创建的复选框上的"过滤器"下拉菜单.
以下是我尝试过的一些事情:
$this->getRequest()->setParam('filter', false);
$this->getMassactionBlock()->setData('filter', false);
$this->getMassactionBlock()->unsetData('filter');
Run Code Online (Sandbox Code Playgroud)
不确定我可能有什么其他选择.有人有什么想法吗?
在你的网格构造函数中添加:
public function __construct() {
....
$this->setNoFilterMassactionColumn(true);
}
Run Code Online (Sandbox Code Playgroud)