在第一个位置重新定位Magento的管理网格列

时间:2014-05-17 14:16:48

标签: magento

要在子网格类的自定义模块中重新定位Magento的管理网格列,我们使用

$this->addColumnsOrder($columnTobeRepostionedID,$afterColumnID);

但是如何在第一个位置放置一个列,紧接在massaction复选框列之后?

我尝试了这段代码但是没有用

$this->addColumnsOrder($columnTobeRepostionedID,'massaction');

那么如何在不修改核心Grid类或使用local/Mage/Adminhtml结构使核心Grid类无效的情况下将列定位在第一个位置

1 个答案:

答案 0 :(得分:0)

修改列顺序的代码

之后
$this->addColumnsOrder($columnTobeRepostionedID,'massaction');

尝试再次调用列分类器

$this->sortColumnsByOrder();