为什么 Slickgrid Ajax/无限滚动会产生间歇性的空白行?
在滚动浏览远程数据源时,SlickGrid 可以正常工作,但经常会添加一系列空行。
例如:
好 好的 好的 空的 空的 空的 好的 好的 好的 好
看起来,在加载数据的过程中,创建了这些空行,然后使用后续行,而不是它创建的空行来呈现填充的行。
我到处都找过了,但结果都不尽如人意。有人能想到会导致这种行为的原因吗?
提前致谢。
In scrolling through a remote data source, SlickGrid works correctly, but often adds a series of empty rows.
For instance:
Good
Good
Good
Empty
Empty
Empty
Good
Good
Good
Good
It seems like, in the process of loading the data, in creates these empty rows, then uses subsequent rows, rather than the empty ones it has created, to render populated rows.
I've looked everywhere and come up short. Can anybody think of something that would cause this behavior?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
slickgrid RemoteModel 示例中的 EnsureData(from, to) 方法中有一个错误,但我不记得具体是什么。我更正了它以及其他一些内容,以便更有效地利用后端数据库。这是代码:
希望这有帮助。
There is a bug in the ensureData(from, to) method in the slickgrid RemoteModel example but I don't remember exactly what. I corrected it and some more to make more efficient use of the back-end database. Here is the code:
Hope this helps.