我怎样才能获得“抵消”? Jquery Datatables 插件中的值
我想在每一页上打印序列号。无论任何列的排序如何,此序列号应始终按升序排列。假设我在第 3 页,“限制”设置为 10。
然后序列号列应打印 21, 22, 23, ..., 30。
我如何在 jQuery 数据表插件。
提前致谢
I want to print serial-no on each page. This serial-no should always be in ascending order, regardless of sorting of any column. Lets suppose I am on page # 3 and 'limit' is set to 10.
Then serial-no column should print 21, 22, 23, ..., 30.
How can I get this in jQuery datatables plugin.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个
fnRowCallback
应该可以让你做你想做的事情:回调的第四个参数是
因此您应该能够使用回调的第四个参数将行号添加到该行(这是回调的第一个参数)。
There's an
fnRowCallback
that should let you do what you want:And the callback's fourth parameter is
So you should be able to use the fourth parameter to the callback to add the row number to the row (which is the callback's first parameter).
你实际上不需要担心任何事情,只需让它简单地
从服务器端创建 s.no 就像下面的 json 一样......然后你不需要担心像 offset 这样的事情
you actually no need to worry about anything , just make it simply
create s.no from server side just like bellow json ... then you no need to worry about anything like offset