django-formset
django-formset copied to clipboard
The missing widgets and form manipulation library for Django
For model choice fields with a selectize widget, the results of the back-end query are filtered again in the front-end ([by sifter](https://github.com/orchidjs/tom-select/blob/4d88fdce102a8e34e6274c274b2f96ca32b7d26e/src/tom-select.ts#L1358), I assume). This hides results the back-end query...
Is it possible to programmatically select and set a value in the Selectize field? I have a form with Selectize field. I added a button near this field. When I...
# Issue I found that using the templatetag `render_form` will ignore the form renderer I declared in forms.py when I implement my project as follows: ``` python from formset.renderers.bootstrap import...
Currently the labels "Drag file here" (dropbox) and "Choose file" (button) are hardcoded. It would be nice if they could be configurable when declaring the widget.
If I use a `Selectize` widget in a sortable `FormCollection` and I drag that collection element, the browser show an error. This presumably is cause by Sortable.js detaching an element...
I've just updated to version 1.3.10 from 1.3.8 and can't seem to get `DualSelector` to work anymore. I've also tested 1.3.9 -- it's still OK. I can see both sides...
I use HTMX in formset form with siblings. When I press add sibling button formset adds sibling but HTMX doesn't know about DOM changes. There's a procedure in HTMX which...
Still have the problem with new release 1.3.9. It happened when I use selectize widget and when I use active search in the widget and it tries to get answer...
Hi, was wondering if I could use external form libraries together with this library? https://pypi.org/project/django-colorfield/ doesn't seem to be supported. Form is rendering properly however saving the form seems as...
Hey, I found an issue trying to set custom classes on widgets. The renderer [overwrites classes](https://github.com/jrief/django-formset/blob/main/formset/renderers/tailwind.py#L27) declared on a widget, making it impossible to do this: ``` my_button = forms.CharField(...