Login

"Dynamic" form with a hidden field

Author:
flaxter
Posted:
March 25, 2009
Language:
Python
Version:
1.0
Score:
1 (after 1 ratings)

This code demonstrates two simple techniques:

  1. so-called "dynamic" forms, in which the form is created at run time by the model

  2. using a widget (forms.widgets.HiddenInput) for a field of the form. I feel like this could be highlighted more in the documentation. You need to do something similar to get a textarea (forms.CharField(widget=forms.widgets.Textarea()) and it took me too long to figure this out.

There are, no doubt, good reasons not to do what I'm doing here the way I'm doing it. Peanut gallery?

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
from django import forms

hiddenValues = forms.Form()

value0 = 17

hiddenValues.fields['value0'] = forms.CharField(initial=value0, 
  widget=forms.widgets.HiddenInput())

# pass the form to your template
# render it as you like, e.g. with form.as_p

More like this

  1. Form field with fixed value by roam 1 week, 5 days ago
  2. New Snippet! by Antoliny0919 2 weeks, 4 days ago
  3. Add Toggle Switch Widget to Django Forms by OgliariNatan 3 months, 1 week ago
  4. get_object_or_none by azwdevops 6 months, 4 weeks ago
  5. Mask sensitive data from logger by agusmakmun 8 months, 3 weeks ago

Comments

tommy (on August 5, 2010):

Great tip. Works like a charm.

#

Please login first before commenting.