yourlabs / django-autocomplete-light

A fresh approach to autocomplete implementations, specially for Django. Status: v4 alpha, v3 stable, v2 & v1 deprecated.
https://django-autocomplete-light.readthedocs.io
MIT License
1.79k stars 466 forks source link

DAL compatibility with other widgets #1337

Open apiljic opened 9 months ago

apiljic commented 9 months ago

Hello.

Is anyone using DAL in combination with other widgets in the same form? I have a form in which I use https://pypi.org/project/django-s3-upload/ for image upload. Now, when I try to add DAL for one of the fields, new objects can't be created (request.POST.get('text') returns None). Without s3upload, DAL works fine, but it appears the two widgets are not compatible and can't be used together in the same form. If anyone has any experience with such issues, I would appreciate some help.

Thanks!