django_serverside_datatable
django_serverside_datatable copied to clipboard
Server-side Datatable with Django
Will this package be upgraded for compatibility with DataTables v2.0.5? Thanks
After updating to Django 4.0 or later, I encountered an `AttributeError` in the `DatatablesServerSideView` due to the removal of the `request.is_ajax()` method from Django. The specific error message is as...
If table contains decimal values, they cannot be searched if you include the decimal. e.g. searching 0.003 will return no results even if values are present in the table which...
Does this version of django_serverside_datatable compatible with datatable version (1.11.4)? Based on the readme, this package is using version 1.10.19
@umesh-krishna Can you think of any clever way to make properties available in the server-side data table view? I.e. say my models look like: ``` class Bar(models.Model): foo = models.ForeignKey(Foo,...
Does the package support integration with the django-filters (https://django-filter.readthedocs.io/en/stable/guide/usage.html) package? and if so, how do you go about it?