Tagged Questions
4
votes
5answers
4k views
Django FormWizard with dynamic forms
I want to implement a simple 2 part FormWizard.
Form 1 will by dynamically generated something like this:
class BuyAppleForm(forms.Form):
creditcard = forms.ChoiceField(widget = forms.RadioSelect)
...
0
votes
1answer
76 views
django wizard — How to realize a dynamic form(or formset) in wizard
I have asked a similar question yesterday but perhaps it was too concret.
I have read a lot about this on net, but I didn't find any solution.
Here is what I want to realize:
I want to ...
0
votes
0answers
70 views
django form wizard - Can not enter done method
I need to modify a wizard in order to allow it to upload several images at one time(during 1st step, 2 steps in total).
For this, I write a make method which generates the form class according to the ...
0
votes
0answers
126 views
howto jQuery .slideUp() + .slideDown() in slide form steps
I am usig Janko's Form-to-Wizard plugin to transform my email form into steps, each step defined by <fieldset> .. </fieldset>.
Now i need some fancy animation on my NEXT-PREVIOUS clicks.
...
0
votes
3answers
99 views
Moving fieldsets within DOM excludes them from POST
I'm using the JQuery Formwizard plugin (http://thecodemine.org/) for one of my forms. This plugin allows you to add and remove elements to and from the form. Nice stuff!
Only, the form elements I'm ...