jquery数据表在创建/更新后刷新
我使用 jquery 数据表作为...表;) 我有一些数据,我想编辑它们。当我单击“编辑”链接时,会出现对话框(http://fancybox.net/)。它包含带有 3 个输入的简单形式。我单击提交按钮,然后数据库中的数据被更新,这就是问题所在。如何刷新数据表并强制其返回之前选择的页面?现在我有了刷新整个父页面的代码。我对该解决方案不满意。
最好的问候
编辑: 好的,我可以看到这可以通过“bStateSave”来完成:true
Im using jquery datatables as ... a table ;)
I have some sort of data into it and I want to edit them. When I click on the "edit" link, dialog (http://fancybox.net/) appears. It contain simple form with 3 inputs. I click on the submit button, then data in db are updated and here is the problem. How can I refresh the datatable and force it to back on the previously selected page? Now I have the code that just refresehes whole parent page. Im not satisfied with that solution.
Best regards
EDIT:
ok I can see that this can be done with "bStateSave": true
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
bStateSave 将执行此操作,但您也可以通过在刷新之前保存
iDisplayStart
设置,然后在重绘期间将该设置应用到表来执行此操作。bStateSave will do this, but you can also do this by saving the
iDisplayStart
setting prior to the refresh and then applying that setting to the table during redraw.