Formset Question #795
-
|
I have a django form with an inline formset, and I want to be able to do 2 things, that I cant find a way. I can't find a way of declaring the formset as an array to manage those relationships. This could be the answer, but a formset is not a queryset, since I can add/delete/update entries. Ideas? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Thanks for the question! Django-unicorn doesn't currently support Django formsets natively (no BaseFormSet, ModelFormSet, or InlineFormSet handling). An alternative is to use a list of dicts as a component property, which gives you the same add/remove/update/total |
Beta Was this translation helpful? Give feedback.
Thanks for the question! Django-unicorn doesn't currently support Django formsets natively (no BaseFormSet, ModelFormSet, or InlineFormSet handling).
An alternative is to use a list of dicts as a component property, which gives you the same add/remove/update/total
functionality: