django-autocomplete-light
django-autocomplete-light copied to clipboard
A fresh approach to autocomplete implementations, specially for Django. Status: v4 alpha, v3 stable, v2 & v1 deprecated.
First - great project, wonderful documentation! I am using dal with HTMX to create an autocomplete field in a modal window. (HTMX loads the modal window from a different View/url...
This fixes #1245 where the select2 fields don't honor the Django dark mode theme. The fix requires using the CSS variables defined by the Django admin. These variables get used...
This resolves https://github.com/yourlabs/django-autocomplete-light/issues/1300. Currently the pk of new object is returned when a new option is created, regardless if you override get_result_value(). Use get_result_value() when returning new option from post()
Fixing an issue where dragging an inline admin section would initialize the autocomplete fields during the dragging phase and when dragging stopped the autocomplete field would be reset and not...
Hello. I've search the docs and the issues and the entire web, but without any luck. Has anyone managed to get DAL working with Wagtail / Telepath? Anyone got any...
Hello, I am sorry for opening up an issue for this but I did not know where else to ask this. Lets say I have this form: ``` class PostForm:...
The selected filter does not filter the model in the admin panel I migrated DAL==3.5.1 for django 4 (replace ugettext to gettext) I did this because the dropdown with the...
I'm encountering the problem, that when the user clicks on the bottom area of the hovered item, then the next item in the list is selected. In this example "[..]...
When I follow the instructions for the tutorial and I run python manage.py, I get the error: ModuleNotFoundError: No module named 'core'
I want to prevent being abel to select the model itself. But `forward.Field("id", "ignore_id"),` doesn't work since there is no "id" form field. What is the easiest way to handle...