Questions tagged [multi-step]

A multi-step form is a series of smaller forms most commonly referred to as "steps" to create a much longer form, such as job application, shipping, and registration forms, to name a few.

It is used to make it easier and less daunting for the users to input their information into your application by breaking the form down into an organised step-by-step form.

160 questions
1
vote
0 answers

Parsley.js drupal 7 node add form multistep validation

I have a node add form in Drupal 7, which is constructed of many fieldsets, which function as steps (jQuery show/hide on next/prev button clicks). I added Parsley validation just as in Parsley multi steps form demo example. The validation in the…
SimiS
  • 11
  • 4
1
vote
0 answers

PHP Email script for Multi-Step Contact Form

I'm using this multi-step contact form: http://thecodeplayer.com/walkthrough/jquery-multi-step-form-with-progress-bar Unfortunately, it will not send an email. My form is the same as the example above. The only difference is I've modified the…
user1339316
  • 75
  • 2
  • 9
1
vote
0 answers

multi-step registration using bootstrapvalidator-prevent proceeding on error

I have a multi-step reg form with each step in a fieldset,i am using bootstrap validator for validation.I made the 'next' button in first step to toggle validation.And it works well... The problem i have is,i have to prevent going to next step on an…
1
vote
1 answer

create multi step form in Drupal 7

Which way is best to create multi step form in Drupal 7, I have used Mform,Multistep node form, Please give me some Best modules refrence. which module is best to create multistep form
1
vote
1 answer

Multi-step form "next" button not working

I have a basic understanding on Javascript and jQuery. I have a multi-step form here which splits up my form into 3 steps. However the "next" button doesnt seem to work. I have spent whole day to research all over the Internet and tried all I could…
SCC
  • 87
  • 1
  • 3
  • 9
1
vote
0 answers

How to create a multi step wizard to dynamically add/edit objects in Navigation properties in MVC

I am working on my first MVC 4 application. We are using Model first approach for this application. I am working on the add employee module which has multistep wizard. Employee class looks like below, it has couple of navigation properties for…
1
vote
1 answer

Handling a session

I am not an expert in php and I want to do the following. I have three views index, step1 and step2 In index view I have an input for a website link, I also have a function which grab some data (name, price, details) from the website and display it…
Adrian George
  • 171
  • 1
  • 11
1
vote
1 answer

Multi-step form with user-input and external web-service

I am building a Booking model in Rails 3.2.3 where a user steps through several form-screens of choices. If the form exactly mirrored the underlying model I know I could use a gem (e.g. Wicked gem) to build a multi-step form. The issue I am having…
John R
  • 95
  • 1
  • 7
1
vote
1 answer

Multi step form validation Codeigniter

Is it possible in Codeigniter to run a multi-step Form validation, such that, when an error has been found, the form validation will stop (not validating the other Form validation rules)? With the set_rules() and run() method of the Form_validation…
Ralph
  • 11
  • 1
1
vote
0 answers

How to do validate confirmaion in multistep form if confirmation field on next step?

I use client_side_validations-formtastic and client_side_validations gems. In my model: validates_presence_of :full_name, :parent_name validates_confirmation_of :full_name, :parent_name, on: :create In form = semantic_form_for @attendee ||=…
1
vote
3 answers

Ruby on Rails using tabs

everyone! At first, I made a single form with large amount of elements: text fields, text areas and so on. When I had got the form ready, I understood that it is not so user-friendly to have such a large form to be filled-in in a row. I don't want…
Dmitri
  • 2,451
  • 6
  • 35
  • 55
1
vote
3 answers

How can I know which option is selected in an HTML form?

I want to have a multi-step form with HTML and PHP. The first step of my form is an option like: Plan 1
Plan 2 Now, my question is:…
Amin Darvand
  • 367
  • 2
  • 19
1
vote
1 answer

Multi step form and dealing with sensitive data?

I currently have a Multi step form set up in my CodeIgniter app and I am just wondering the best way to set it because it will hold sensitive data. At the moment I have a 5 page form which uses ajax to validate each step and then redirect to the…
green_arrow
  • 1,257
  • 7
  • 21
  • 37
0
votes
3 answers

EF4 Getting Associations In Separate Queries When Using POCOs

I want to build up an object graph using Entity Framework 4.2. Right now, I have POCO entities, using ICollection for navigation properties. I want to avoid using EntityCollection or anything EF-specific. I want to avoid massive joins caused by…
0
votes
0 answers

React Multi-Step Form: How to handle radio button with 'other' input text field

I'm creating a React application that makes use of a multi-step form. There are 4 'steps' altogether and each form data is stored inside of a state variable. I'm having a problem particularly with the radio button options. When I click the 'other'…