답변:
아래 코드에서 시도하십시오.
$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);
}