Datatable / Tabletools - 使用 Flash 进行优雅的回退
我们使用优秀的 jQuery Datatables 插件和 TableTools 来执行批量操作,例如复制和导出到 CSV。这些需要 Flash,但我们正在为许多未启用 Flash 的客户提供服务。现在,对于这些观众来说,它们似乎已损坏,因为“缺少插件”注释出现在按钮文本上。我宁愿隐藏按钮,但我不知道如何隐藏。
有谁知道如果未启用闪光灯,如何将这些按钮设置为隐藏?
We're using the excellent jQuery Datatables plug-in with TableTools for bulk actions such as copy and export to CSV. These require Flash, but we are serving many customers that don't have flash enabled. Right now they appear broken for this audience, as the "missing plugin" note appears over the button text. I'd rather hide the buttons but I'm not sure how.
Does anybody know how I can set up these buttons to be hidden if flash is not enabled?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个 多种方式来识别 Flash 的可用性。您需要将这样的测试添加到您的
$(document).ready()
函数中,并相应地调整 DataTables 的调用:希望这能让您上路。
There are a variety of ways to identify the availability of Flash. You need to add such a test to your
$(document).ready()
function, and tweak the invocation of DataTables accordingly:Hopefully that will get you on your way.