-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support bServerSide
for datatables
#126
Comments
True. |
ok done Note: filtering only works if local fulltext index is available, but if it is not (and you do not want to enable it), you may set bServerSide: false manually in the datatables settings. |
Cool :) |
Currently every "Next" page will result in querying the catalog for all records that match the view, and creating a To mitigate this, a view that is being paged serverside should have a cache which has a Since view results are the same for all viewers, there can be one cache which is invalidated when the view is updated. |
When viewing a large view, a dynamic table becomes impractical (e.g. will freeze Chrome for a couple of minutes).
For this, views will need to expose an URL that returns blocks of JSON for the requested rows.
See http://datatables.net/usage/server-side
The text was updated successfully, but these errors were encountered: