Releases: morlandi/django-ajax-datatable
Releases · morlandi/django-ajax-datatable
v4.5.0
- Skip
filter_queryset_by_date_range
(that is: ignore date_from
and date_to
from requests params) when show_date_filters
is disabled
v4.4.5
- Remove pytz since it's deprecated in Django 4.0 and will be removed in Django 5.0
v4.4.4
- few changes to allow the initialization of a DatatableView offline (for example, to export a filtered queryset from a background process)
v4.4.3
- assign '__iexact', instead of '__icontains', as default 'lookup_field' value for columns with choices
- added toolbar_message(): same as footer_message(), but appends message to toolbar
v4.4.2
- fix: searching on a date/datetime field: when the value entered is not a valid date, we clear the table content to give a feedback to the user
v4.4.1
- fix: when STRIP_HTML_TAGS is active, None was rendered as 'None' instead of ''
v4.4.0
- Prepare for Django 4.0
- Support choice lookup for m2m_foreign_field (many thanks to Martin Schwier and Etienne Pouliot)
- Fix Multiple search values when you set search_values_separator = '+' and try to search for term with + in it (many thanks to Petr Dlouhý)
- POSSIBLE INCOMPATIBLE CHANGE: for security reason, HTML tags are now stripped by default in the rendered table; you can disable this setting AJAX_DATATABLE_STRIP_HTML_TAGS = False (thus restoring the previous behaviour); many thanks to Mich "Mike3285"
v4.3.0
- Add support for ManyToMany field (many thanks to Etienne Pouliot); REQUIRES PYTHON 3.6
- POSSIBLE INCOMPATIBLE CHANGE: PYTHON >= 3.6 REQUIRED
- Fix #35: prevent ZeroDivisionError
v4.2.1
- Example project cleanup
- Added "side filters" sample
- Readme updated