在下面的代码中,如果我注释掉$grid->setExport(array('pdf', 'csv','excel','wordx'));
行,我会获得所有默认值,如pdf,excel和其他格式。
如何从以下代码中删除setExport
?
$view = new Zend_View();
$view->setEncoding('ISO-8859-1');
$config = new Zend_Config_Ini('./application/configs/grid.ini', 'production');
$grid = Bvb_Grid::factory('Table', $config, $id);
$grid->setEscapeOutput(false);
$grid->setExport(array('pdf', 'csv','excel','wordx'));
return $grid;
答案 0 :(得分:2)
$grid->setExport(array());
您正在寻找什么。