数据表:导出 Excel 按钮
有没有办法设置“导出”、“PDF”按钮的位置? (在表格的右侧,表格的右下角,...)
http ://www.datatables.net/release-datatables/extras/TableTools/
Is there a way to set the position of the Export, PDF button ? (on the rightr of the table, bottom right of the table, ....)
http://www.datatables.net/release-datatables/extras/TableTools/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果要移动整个表格工具栏,请在初始化时移动 T 字母。最后推动整个工具栏的示例是:
您无法重新配置 DataTables 以仅移动 pdf 按钮,但您可以使用标准 JQuery 将类为“DTTT_button_pdf”的按钮移动到某个新位置。可能是这样的:
在这个例子中,newPosition 是您放置 pdf 按钮的元素的 id。
If you want to move entire table tools toolbar move T letter in the initialization. Example that pushes entire toolbar at the end is:
You cannot reconfigure DataTables to move only pdf button, but you can use standard JQuery to take button with class "DTTT_button_pdf" to some new position. Probably something like:
In this example, newPosition is an id of the element where you an to place pdf button.