使用 jQuery 对表格列进行排序和切换
我想让用户能够选择表中的哪些列可见,以及它的顺序。
如何混合可排序/可拖动或其他插件来实现此目的?任何帮助都会很棒。
如果可以使用我使用的 jQuery cookie 插件保存并重新读取用户设置,那就太好了。
I would like to enable user to choose which columns in table are visible, and it what order.
How can I mix sortable/draggable or other plugins to achieve this? Any help would be great.
It would be nice if user settings could be saved and re-read with jQuery cookie plugin, which I use.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有很多不同的 jQuery 插件可以实现这一点,快速搜索一下就会发现 http://tablesorter.com/docs/ 其中有相当多的样本。
请参阅 http://plugins.jquery.com/ 查看完整列表
There are quite a few different jQuery plugins for this, one quick search revealed http://tablesorter.com/docs/ which has quite a few samples.
See the complete list at http://plugins.jquery.com/
我已经这样解决了这个问题:
制作一个带有可用列复选框的表单,并使表单字段可排序。
提交表单后,我有清晰的列列表和订单一起显示。
I've solved this problem like this:
Make a form with checkboxes of available columns, and make form fields sortable.
After a form submit I have clear list of columns to display along with order.