django-ajax-datatable icon indicating copy to clipboard operation
django-ajax-datatable copied to clipboard

A Django app which provides the integration of a Django project with the jQuery Javascript library DataTables.net

Results 54 django-ajax-datatable issues
Sort by recently updated
recently updated
newest added
trafficstars

I have a Django application that is integrated with a Postgres database. In the front-end I use DataTables and, Python-side, I use django-ajax-datatable. I am facing an issue that I...

Hello, in your demo has flters ![image](https://user-images.githubusercontent.com/2332107/222130989-be27f584-fdcd-4a47-a401-03ca647c970b.png) in my example they don't show ![image](https://user-images.githubusercontent.com/2332107/222131335-ab9c1213-4694-475c-b03d-2b6d997b3694.png) ``` model = Product title = 'каталог' initial_order = [["name", "asc"], ] length_menu = [[10, 20,...

bug

I have a question about customizing `ajax_datatable/row_tools.html` I understood that I can modify the code there. I would find it nicer if I could put the file in my Django...

It would be really awesome if you can add support for Django reverse relationship lookup. Or if its there, please let me know how to work with it. Thanks

I would greatly appreciate it if you could incorporate support for reverse relationship lookup in Django. If this functionality is already available, kindly provide guidance on its utilization. I have...

Hello everyone, I am considering using django-ajax-datatable in my project and I am curious if there is a possibility to somehow enable ["inline" editing](https://editor.datatables.net/examples/inline-editing/simple). Is it supported? If not, how...

First of all thank you for the great project :) I have a model where i store a key and a value like this: ``` class DataModel(models.Model): key = models.CharField(max_length=128)...

Hello, I use Django 3.2.15 and django-ajax-datatables 4.3.0. I have a datatable with pre-filters which values are transmitted to the get_initial_queryset method. When I expand the row details, a GET...

There is a way to customize th colspan from the table definition?

Hi, thanks for your project. I'm working on project, where I need to implement a datatable based on a query. So I implemented this with the help of get_initial_queryset method....