在Xls中导出我的自定义网格数据


11

如何在Magento管理控制台网格中以xls格式导出​​我的自定义网格数据。

默认情况下,我们具有csv和xml格式。

在此处输入图片说明

任何人都可以帮助我。

Answers:


13

试试下面的代码:

$this->addExportType('*/*/exportExcel', Mage::helper('{module}')->__('Excel'));
public function exportExcelAction()  
{  
    $fileName   = 'excel_name.xls';
    $content    = $this->getLayout()->createBlock('{module}/adminhtml_{module}_grid')->getExcelFile();
    $this->_prepareDownloadResponse($fileName, $content);  
}  

也请参考这里


1
哇,太好了!我想知道为什么他们总是一直使用xml而不是xls,但是却不知道他们是否有Excel。您的答复给了我答案。谢谢。
Shadowbob
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.