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)
...
2
votes
2answers
585 views
Django form wizard - choices depending on first form step
I have created a 2 step form with the FormWizard as follows:
1st step: asking user for location
2nd step: show several search results
depending on the user location, and display it as ...
0
votes
1answer
91 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
2answers
447 views
jquery formwizard + validation plugin, dynamically added fields not validated
This is my third post on this project already -it's a tough one!
I'm using the JQuery FormWizard plugin in combination with its built-in validation options.
Now, I'm using the FW plugin's default ...
0
votes
2answers
123 views
Referencing a non-existent user Control?
I have created an application that searches a directory and loads all of the usercontrols into the form and then uses a "GetResult()" method to grab the answers from the form. I did not do this OOP ...