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 52 django-ajax-datatable issues
Sort by recently updated
recently updated
newest added

This is to prevent crashing in case of a subsequent relationship object is missing. E.g. in case of relation if obj1__obj2__obj2field, obj1 or obj2 are missing

The column search box does not work for `DateTimeField`. For example, intuitively a column with value `08/07/2017 17:03:28` should match "8/07" or "2017". However, the table becomes empty and "No...

The column search filter has been good alternative to the default Django Admin `list_filter`, especially if you know what you are looking for. However, I was wondering if there was...

When the ajax_datatable's columns cannot fit onto the screen, a horizontal scroll bar appears to scroll to the right-most table columns. However, the pagination buttons are in that container as...

The example_minimal code was very useful in understanding how ajax_datatable works. However, how would I use ajax_datatable to replace the default admin table (overriding the admin template)? It is a...

I can't get your example working, this function is part of what ? date_input_to_isoformat "Query.Deferred exception: date_input_to_isoformat is not defined ReferenceError: date_input_to_isoformat is not defined" Removing it than the table...

Hello, i initialize Javascript with: $(document).ready(function() { AjaxDatatableViewUtils.initialize_table( $('#storage_listview'), "{% url 'storage:Ajax_storage_listview' %}", { // extra_options (example) processing: false, autoWidth: false, full_row_select: true, scrollX: true }, { // extra_data //...

`column_defs` 's `foreign_field` option breaks for `models.OneToOneRel` when there is no related_model linking to this obj. Maybe in columns.py, `get_foreign_value` has to check if `current_path_item` is one of the `OneToOneRel`'s...

Add type according to https://datatables.net/reference/option/columns.type (since 1.10)

Hi. I needed to display data after applying queryset.values. As a result, instead of data, ??? in all columns. Model: class StudyUploadLog(models.Model): study_instance_uid = models.CharField(max_length=150, verbose_name='Study Instance UID') patient =...