Tagged Questions
The formwizard tag has no wiki summary.
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
3answers
141 views
Jquery .change isn't working in Chrome
form some reason this seems to be working fine in FF but not in Chrome. I have tried wrapping in $(window).load( function() {...}); and even removing all other Javascript on the page (other then the ...
2
votes
0answers
85 views
Ruby on Rails: Need Recommendations for Wizards/Spring Webflow-type Solutions
I'm starting work on a multi-page web application using Ruby on Rails 3. My webapp won't be using a database directly - it'll be calling a web service to persist the collected information.
Are there ...
2
votes
2answers
542 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 ...
1
vote
1answer
96 views
Can JQuery Form Wizard submit 'pages' that haven't been shown?
I'm using the JQuery Form Wizard plugin without a final AJAX submit, just a regular POST. Using AJAX isn't feasible due to the complexity of the final form processing code.
The problem is that on an ...
1
vote
2answers
155 views
Problems with combine django-registration and FormWizard
I do something wrong, but I don't know what. I try to combine django-registration 0.7 and form wizard but i getting error like this:
AttributeError at /
'BoundField' object has no attribute ...
1
vote
1answer
155 views
Easiest way to save Django´s formwizard form_list in DB?
I have created multiple sub-forms from one model to use the FormWizard in Django.
Confusing is the saving part. Once the user finished the form, I wanted to save the information in the DB. This is ...
1
vote
1answer
340 views
Rejoin branching using jQuery formwizard?
jQuery formwizard (http://thecodemine.org/) allows you to branch a form wizard based on inputs. I am trying to figure out if it possible to rejoin the branches (and not just for the last step.)
e.g. ...
1
vote
1answer
439 views
How to use netbeans module in my own project?
I hvae done a netbeans tutorial to create a wizard dialog, and the result wizard dialog module have appear on the toolbar of my netbeans, but the problem is how could I use that module in my own ...
1
vote
0answers
125 views
FormWizard: Forms determined dynamically
In my website, i wanna give users the possibility to upload videos, audio files, and pdfs. For this, i have thought about using formwizard. The first form-page is to ask for the name + the type of ...
1
vote
1answer
132 views
Django: FormWizard runs but one instance when it's URL is requested multiple times
I found out that the FormWizard only __init__'s once, when the url is request by multiple users at the same time (me in 2 browsers :).
This results in the fact that my temporarily stored data on the ...
1
vote
2answers
694 views
Skip steps on a django FormWizard
I have an application where there is a FormWizard with 5 steps, one of them should only appear when some conditions are satisfied.
The form is for a payment wizard on a on-line cart, one of the steps ...
0
votes
1answer
25 views
How wrap the new FormWizard in a view?
Using the new formwizard tool (https://github.com/stephrdev/django-formwizard), How do I wrap the Django Form Wizard in a view? Instead of create it in the urls.py. I need to do this so I can access ...
0
votes
0answers
17 views
How to create IWizard assembly for VS2008 project template
I have created an IWizard assembly that should take in parameter values (via Windows Form) and insert them where called for by the code contained in a VS 2008 Project template. Here is the article I ...
0
votes
2answers
72 views
Multiple page form in asp.net 3.5
I am trying to design a multiple page web form to collect information from the users. Users can quit at any time and then come back later on the page where they left, I send an email to users ...
0
votes
0answers
71 views
jQuery Formwizard - Result of Expression is not a Function
I've created a multi-step form using jQuery (Formwizard, jquery Validation, jquery UI, et al) — the form walks itself through each step (I haven't written the final submit for the JSON object yet), ...
0
votes
1answer
136 views
Django FormWizard - How do you dynamically create a formset based on previous step
I've seen this post and it's not working (in part because it's dated). I've also studied the source tree to no avail (the tests helped) but I can't find my answer. What I'm looking to do is get a ...
0
votes
1answer
51 views
Passing Different Templates in Django Form Wizard
I want to pass different template in each step for my django form wizard.
I want to check each step from form wizard's get_template() function. If I try :
def get_template(self,step):
if step == ...
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
78 views
How to reset current step in django formwizard
I'm making an app for registration using FormWizard including 3 steps. The app works fine if the user just go step-by-step. But I have two big problems:
User can't go back from a step 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
1answer
121 views
Django Form Wizard, SessionWizardView Import Error
I want to implement a django form wizard. I read the documentation about it but when I add the
'from django.contrib.formtools.wizard.views' import SessionWizardView' to my view, i get
"No module ...
0
votes
0answers
77 views
In JQuery formwizard with branches, how to enable finish button in all the steps?
In my case, except the first step, all the subsequent steps in the wizard are optional. So I need to have finish button in all the steps. Is it possible in JQuery formwizard? I tried using,
<span ...
0
votes
1answer
51 views
Rails3: What REST URLs for the different pages of a multi-pages wizard?
I am new to Rails and its all-REST concept.
I am writing an exam website with Rails3.
During an examination, a user has to answer questions that are spread over 4 pages (kind of like a wizard).
How ...
0
votes
0answers
202 views
jQuery FormWizard validationOptions stopped working when i added remoteAjax
validation was working fine until i added remoteAjax. The remoteAjax works fine, but there is no validation on the other steps of the wizard that are specified in the validation .
Looks like you ...
0
votes
1answer
38 views
How to get value of checkbox added in vsfolderdialog.wiz file
I have added a checkbox in vsfolderdialog.wiz file for customizing Folder Path dialog in Setup and Deplopyment Project. But i have not an idea how i will get its value on which i have to take some ...
0
votes
0answers
124 views
jQuery form-wizard validation Validator.addMethod question
reference code here: Other Issue
When you use the validator.addmethod for a custom validator do you have to hide the error message when your method evaluates to true? THe link above shows the code ...
0
votes
0answers
322 views
jQuery form-wizard validation even after custom validate still showing my error message
maybe i don't understand the validator.addMethod function fully, but i am having some trouble. It fires fine and does the validation. Calls my server method and returns. now i return true when ...
0
votes
2answers
428 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
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 ...
0
votes
1answer
162 views
jquery formwizard last step sum of all the previous steps
has anyone used the formwizard plugin and had a last step that was a confirmation step of all the entries on the previous steps? if so how would you recommend handling that? i was looking at a few ...
0
votes
1answer
117 views
jquery formwizard how to validate radio button only if it is enabled?
i have a pair of radio buttons that upon certain circumstances will be enabled or disabled.
Is there a way to have it validate the radio button only if the radio buttons have a certain class like ...
0
votes
2answers
282 views
jquery formwizard last step not showing
is there any reason that my final step i call confirmation isn't showing in the formwizard?
<form id="wizardForm" action="" method="post">
<div id="fieldWrapper">
...
0
votes
0answers
121 views
Django: Submit points at wrong url
I have two forms in the same app (reMap), one is based on the Django FormWizard and "normal" form. The "normal" form works fine, but when I use the Wizard created form, the user gets redirected to the ...
0
votes
2answers
662 views
How to run jquery validate() while using form wizard?
I am using the jQuery Form Wizard 3.0.4 plugin for a multistep registration process. It uses the jQuery validator plugin built in, which is working fine when going from step to step. EDIT: This means ...
0
votes
4answers
336 views
what is the best way to design a wizard form in ASP.NET MVC
i want to design a form in asp.net in Wizard style. do something in click next.
the form have 3 step
fill your information
add element [here if you type something wrong then you can edit or delete ...
0
votes
1answer
260 views
Validate between fieldsets
I'm using the formtowizard jquery plugin with bassistance validation. I have attached my next button to a click event which validates my form however I only want it to validate the current fieldset ...
0
votes
1answer
537 views
jquery checkbox array validation w/ formwizard
I'm using the formwizard plugin and I can't get a checkbox array to validate. I've got other elements on the page working, but can't get this one (not to mention this is one of 2 checkbox arrays I'll ...
0
votes
1answer
253 views
Jumping to a specific step in jQuery formwizard
I am using the jQuery plugin 'formwizard' and wish to allow users to jump to a specific step in the process.
What I thought would do it was the 'show' method:
$(function(){
...
0
votes
2answers
121 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 ...
0
votes
1answer
211 views
How/where to stop Django Formwizards 'done' method being called on payment failure
I've looked through the django documentation, done lots of googling and have tried quite a few different solutions but to no avail.
I've created a 3 part form using Django's FormWizard. Once the last ...
0
votes
0answers
139 views
Modifying a Form Wizard Plug in - Add visited state for “Steps Left”
Hi trying to add a modification to the form wizard from http://www.jankoatwarpspeed.com/post/2009/09/28/webform-wizard-jquery.aspx I was already able to make it validate the current visible fieldset ...
0
votes
1answer
209 views
JQuery form wizard and historyEnabled doesn't work
Hi
I'm trying Jquery form wizard http://plugins.jquery.com/project/formwizard
And it seems to work until I use historyEnabled: true. Back button stops working (I see in that case history.back() is ...
0
votes
2answers
2k views
jquery form wizard validation
I'm trying to implement a validation script (bassistance) with a jquery form wizard (http://www.jankoatwarpspeed.com/post/2009/09/28/webform-wizard-jquery.aspx) but I'm having some problems.
On the ...
0
votes
1answer
213 views
Django FormWizard and view
Basically, I just want to be able to get the parameter community_name, can this be done with
(r'^(?P<community_name>\w+)/matches/submit/$', MatchWizard([MatchStep1Form, MatchStep2Form, ...
0
votes
1answer
540 views
How to create Django FormWizard for one Model?
I have Django Model with many fields which user must fill. If I'll create one ModelForm for this Model it will be big enough for one form. I want to split it using FormWizard. I think it's possible ...