任何像 DisplayTag 的“媒体”之类的东西都可以使用。 jQuery DataTables/TableTools 中的字段?
我正在将一些使用 DisplayTag 的表转换为使用带有 TableTools 插件的 DataTables 进行导出。前者的一个好处是,每列都有一个 media 字段,用于指定该列是否应出现在 HTML、CSV 等中,以便您可以在不同的媒体中拥有不同的列。
有没有办法在 DataTable/TableTool 环境中复制这个?具体的用例是,我们的许多表中的列是 HTML 显示中几列的缩写摘要,而导出的版本则旨在具有完整的列。
I'm in the midst of converting some tables that are using DisplayTag over to using DataTables w/ the TableTools plugin for export. One nice thing about the former is that there's a media field for each column which specifies if that column should be present in HTML, CSV, etc such that you can have different columns in different media.
Is there some way to replicate this in the DataTable/TableTool environment? The specific use case is that a lot of our tables will have columns which are abbreviated summarizations of a few columns in the HTML display while the exported versions are intended to have the full columns.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TableTools 中的等效项是
"mColumns"
选项,它允许您定义'all'
、'visible'
、'hidden '
或要包含在输出中的列索引数组:http://datatables.net/extras/tabletools/button_options#mColumns
The equivalent in TableTools is the
"mColumns"
option, which allows you to define'all'
,'visible'
,'hidden'
or an array of column indexes that you want to include in the output:http://datatables.net/extras/tabletools/button_options#mColumns