Skip to content

Releases: morlandi/django-ajax-datatable

v4.5.0

04 Apr 09:09
Compare
Choose a tag to compare
  • 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

13 Feb 18:20
Compare
Choose a tag to compare
  • Remove pytz since it's deprecated in Django 4.0 and will be removed in Django 5.0

v4.4.4

31 Mar 10:54
Compare
Choose a tag to compare
  • few changes to allow the initialization of a DatatableView offline (for example, to export a filtered queryset from a background process)

v4.4.3

08 Mar 14:58
Compare
Choose a tag to compare
  • 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

31 Jan 12:57
Compare
Choose a tag to compare
  • 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

31 Jan 09:47
Compare
Choose a tag to compare
  • fix: when STRIP_HTML_TAGS is active, None was rendered as 'None' instead of ''

v4.4.0

27 Dec 18:59
Compare
Choose a tag to compare
  • 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.1

26 Sep 08:02
Compare
Choose a tag to compare

v4.3.0

28 Aug 08:27
Compare
Choose a tag to compare
  • 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

06 Jun 15:16
Compare
Choose a tag to compare
  • Example project cleanup
  • Added "side filters" sample
  • Readme updated