我想更改“添加产品”按钮的操作。我已经改变了标签
$this->_addButtonLabel = Mage::helper('abc')->__('Export');
我可以更改其操作,以便当用户点击此按钮时,他会转到我的自定义网址吗?
由于
答案 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