Answers:
试试下面的代码:
$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);
}
也请参考这里