Magento:改变按钮动作

时间:2011-11-01 12:12:51

标签: magento

我想更改“添加产品”按钮的操作。我已经改变了标签

 $this->_addButtonLabel = Mage::helper('abc')->__('Export');

我可以更改其操作,以便当用户点击此按钮时,他会转到我的自定义网址吗?

由于

1 个答案:

答案 0 :(得分:0)

您需要添加以下代码

<module>/Block/Adminhtml/<module>/Grid.php

中添加以下代码

在_prepareCollection函数中

 $this->addExportType('*/*/exportCsv',Mage::helper('your_helper')->__('CSV'));

your_helper:也许是你的模块名称

然后在控制器Controllers/Adminhtml/

中添加以下功能
 public function exportCsvAction() {
    $fileName = 'your_custom_file.csv';

    $content = $this->getLayout()->createBlock('your_custom_csv_grid')->getCsvFile();

    $this->_prepareDownloadResponse($fileName, $content);

  }

回答来源及更多详情here