django-rest-framework-datatables icon indicating copy to clipboard operation
django-rest-framework-datatables copied to clipboard

Seamless integration between Django REST framework and Datatables.

Results 26 django-rest-framework-datatables issues
Sort by recently updated
recently updated
newest added

My Javascript defines a [function](https://datatables.net/reference/option/columns.data) for the `columns.data` attribute: ```javascript $('#player-table').DataTable({ "serverSide": true, "ajax": { "url": "{% url "api:player-list" %}?format=datatables", }, "columns": [ "data": function ( row, type, val, meta...

help wanted
Documentation

https://datatables.net/blog/2020-05-12 https://datatables.net/extensions/searchpanes/serverside https://editor.datatables.net/examples/extensions/searchPanes.html Could someone implement this feature?

enhancement
help wanted

_filter_unused_fields is building list of columns from request, lets assume that there is a field `detail.name` which is perfectly fine and properly serialized in the next loop there is a...

Added support for Django 4.2 & drop python 3.7 (EOL). Can we have a new release after this PR is merged? Thanks,

When I am using POST method, the default global search and column search is not working. The same worked when I used GET method and ViewSet. Then I changed the...

- Fixes #135 - Moves version number into toml file - Bumps version to 0.7.1 - Not including poetry.lock per Poetry recommendations that it is not needed for libraries (https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control)...

Hello, I've tried to add some support to new [SearchBuilder](https://datatables.net/extensions/searchbuilder/serverside) but I'm afraid it's too much for my limited knowledge I was wondering if this proyect is going to support...

enhancement
help wanted

Noted this during installation ``` DEPRECATION: djangorestframework-datatables is being installed using the legacy 'setup.py install' method, because it does not have a 'pyproject.toml' and the 'wheel' package is not installed....

Hello, I had a problem with raw queryset which doesn't contain count method. The solution is to replace queryset.count() by len(queryset). Here is the issue : #148 Thanks, Stefano