- Improved page performance by reducing queryset.count() calls.
- Added
get_{field}_choices
to allow for custom select and multi-select dropdown choices.
Allow specifying
nulls_first
andnulls_last
behaviour in theorder_fields
options. For example:class SomeListableView(BaseListableView): order_fields = { "some_field": { "desc": {"nulls_last": True}, "asc": {"nulls_fist": True}, } }
- Fix issue with filters containing Unicode characters that contain surrogate pairs
- Fix issue with filters containing Unicode characters
- Add support for "Live Filters".
- Django 4.x compatibility
- In order to allow
|
characters in searches, the search term separator for multi selects has been updated to use`|`
which is a 3 character sequence unlikely to apply in normal searches.
- Added a loose_text_search setting to views. Set
loose_text_search = True
on your view to enable partial matching in your text searches. For example "Fo Ba" will match "Foo Bar".
- Listable for Django 3.2
- Add field names to column headers as data attributes
- Add columnSearch to Listable context object
- Fix issue with encoding of search filters
- wrap datatables css/scripts in function so static is not called at import
- Fixed a same site cookie issue
- Fixed a bug where select dropdowns were being truncated by bottom of page
- Added a get_fields method to set fields dynamically
- Fix an issue with incorrect timezones
- Add support for Django 2-
Fix values_to_dt to allow unicode
Add fix for when using FORCE_SCRIPT_NAME setting
Update to support Django 1.8-1.10 and Python 2.7-3.5
Cast search term to lower case if case insensitive search requested to allow easier filtering with extra queries.
Fix formatting bug introduced by 0.3.8
Fix unicode encoding error
Add date range picker
Add multi select and date select widgets (thanks to @ryanbottema)
Fix filtering and count queries for django-mssql
- Fix filtering of None values for SELECT fields
- Fix issue with boolean field filtering
- Fix issue with pagination type
- Fix issue with namespaced urls
- add view args & kwargs to context to allow full reverse
- fix order_by
- Complete overhaul of api
- Fix saveState bug
- First release on PyPI.