在 zend zfdata grid 中删除 pdf、excel 和其他导出选项

发布于 2024-11-28 14:45:39 字数 487 浏览 1 评论 0原文

在下面的代码中,如果我注释掉行 $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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最终幸福 2024-12-05 14:45:39
$grid->setExport(array());

这就是您要找的。

$grid->setExport(array());

Is what you're looking for.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文