在 zend zfdata grid 中删除 pdf、excel 和其他导出选项
在下面的代码中,如果我注释掉行 $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;
In the code below, if I comment out the line $grid->setExport(array('pdf', 'csv','excel','wordx'));
, I get all the default values like pdf, excel and other formats.
How do I remove setExport
from the code below?
$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;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是您要找的。
Is what you're looking for.