DataTables ajax - 定义返回的行数
我将 DataTables 插件与 bProcessing
和 bServerSide
结合使用。有时我会为 TD 返回一个空记录,但我不希望它计算此记录。
计数,即显示 10 条记录中的 1-4 条。我希望它显示 1-3 而不是 1-4,但该值是根据返回的 TD 行数计算的。我似乎找不到一种方法来通过 ajax 返回传递这个值,就像我可以使用 iDisplayStart 和 iDisplayLength 一样。
有什么想法可以解决吗?
谢谢!
I'm using the DataTables plugin with bProcessing
and bServerSide
. Sometimes I will return an empty record for a TD and I don't want it to count this.
The count, i.e., Showing 1-4 of 10 Records. I would want it to show 1-3 instead of 1-4, but this value is calculated based on the number of TD rows returned. I can't seem to find a way to pass this value with the ajax return, as I can with iDisplayStart and iDisplayLength.
Any ideas as if there's a work around?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定是否能解决您的问题,但是您检查过
iTotalDisplayRecords
吗?服务器端处理
顺便说一句,为什么不能返回 3 行数据而不是 3 行数据+ 空行?
我是说 。您应该控制从服务器发送回客户端的数据...
也许如果您描述您的工作方式,您将不需要操作任何属性,例如
iTotalDisplayRecords
not sure if will solve your problem , but have you checked the
iTotalDisplayRecords
?Server-side processing
b.t.w , why exactly cant you return 3 rows of data instead of 3 rows of data + empty line?
I mean . You should control the data you sending back from the server to the client...
Maybe if you will describe the way you work you wont be needed to manipulate any properties like
iTotalDisplayRecords