7👍
There are a few places in Django where “the reason why” is because that’s how it was implemented for the Django admin app, and I believe this is one of them. Thus the answer is they expect you to implement your own javascript.
See this SO question Dynamically adding a form… for some more javascript ideas.
There are also two pluggable apps available, django-dynamic-formset and django-dinamyc-form which I hadn’t seen until just now when looking up the first one.
4👍
This question is a bit old, but it took me a while to figure this out as well.
I suggest rendering formset.empty_form in your template as a hidden field, and referencing this field in your javascript.
Here’s a complicated dynamic formset example from the django admin site:
(but note that it has not been updated to use empty_form….)
[js]
http://code.djangoproject.com/browser/django/trunk/django/contrib/admin/media/js/inlines.js
[html template]
http://code.djangoproject.com/browser/django/trunk/django/contrib/admin/templates/admin/edit_inline/tabular.html
- [Django]-Recommended place for a Django project to live on Linux
- [Django]-Keep Secret Keys Out
- [Django]-How to create a custom decorator in Django?
2👍
It’s because formset have been created to work without javascript, using only the usual HTTP workflow.
Django is javascript agnostic.
If you want to add some javascript to the mix, you can use the dedicated jquery plugin.
- [Django]-Displaying graphs/charts in Django
- [Django]-Django formset_factory vs modelformset_factory vs inlineformset_factory
- [Django]-Remove (or hide) default Permissions from Django
1👍
in my case. i used the plugin django-dynamic-formset (https://code.google.com/p/django-dynamic-formset/wiki/Usage)
and modified the option “added” and worked good.
$('#formset-table tbody tr').formset({ prefix: '{{ formset.prefix }}', formCssClass: '{{ formset.prefix }}-inlineformset', added: function(obj_tr){
var form = $(obj_tr).html().replace(/\-(\w+)\-(\w+)(fix__)\-/g, '-');
$(obj_tr).html(form);
},
this regular expression replace the string [prefix]-prefix peer ‘-‘
maybe isn’t the best solution, but worked.
- [Django]-Print the value of a variable in Python/Django?
- [Django]-What is "load url from future" in Django
- [Django]-Playframework and Django
1👍
There are some cases of possible XSS when using formset.empty_form
as a string, replacing '__prefix__'
to actual formset form index. My pluggable application converts formset.empty_form
into Knockout.js template which is then cloned via custom Knockout.js bindings. Also Knockout.js automatically re-calculates form field id indexes, when newly added formset form is dynamically deleted before the whole form with inlineformsets was submitted. Here is the documentation:
Knockout.js binding also prevents XSS when loading custom fields with inline Javascript.
- [Django]-Django: how to set log level to INFO or DEBUG
- [Django]-How to configure where to redirect after a log out in Django?
- [Django]-How do I use prepared statements for inserting MULTIPLE records in SQlite using Python / Django?