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
0
votes
0 answers

Multi-Step Form debugging Rails - ActionController::ParameterMissing

I understand that this issue has been raised several times, but I can't find to find a way around.. I am using this solution to create a multi-step form without the Wicked gem: Best way to make Multi-Steps form in Rails 5 It seems that I am able to…
0
votes
0 answers

Adding multiple values (addresses) to one input field name[] in a multi step form when another field (years at residence) is invalid (<5)

I built a multistep form of 14 'pages' (steps), on one step (10) we ask for an address, on step 12 we ask for the number of years att he current residence. If this number is less than 5 years, I have to add another address, as long as the total…
Kim K.
  • 121
  • 2
  • 13
0
votes
1 answer

How to implement a simple and basic multi step LSTM with Keras IN R?

Considering the following matrices x_train <- matrix(c(1,2,3,2,3,4,3,4,5,4,5,6,5,6,7), nrow=5, ncol=3, byrow=T) y_train <- matrix(c(2,3,4,3,4,5,4,5,6,5,6,7,6,7,8), nrow=5, …
0
votes
1 answer

How do I set up parsely with nodejs?

I've been working on form validation for days. I'm trying to validate a multi step form. I'm using Nodejs, ES6, Express, PUG. I'm having a hard time finding something that works. I think parsley would do it for me, but I cant get it to work with…
Ian Ellis
  • 541
  • 6
  • 19
0
votes
1 answer

How to display the shipping methods choices on specific page?

I'm using multi-step checkout process and I'm trying to display only the shipping method options on the second step. ( image ) https://i.stack.imgur.com/kGO8D.jpg By the default the shipping methods are displayed in the checkout page which I'll…
Malenko123
  • 11
  • 4
0
votes
1 answer

How can I make sure jquery selects the "next" button only once in a multi-step form?

I am new to jQuery. I want the button with class pbNext to be click ONLY ONCE when radio button is checked (https://smartune.nl/reparatie-melden). The following works, but it brings me to the last step. All next buttons have pbNext class. Can…
0
votes
1 answer

Store image somewhere except database or file manager where i can get to access it globally

I have a Multi Step form with 6 pages. Each page has 2-3 inputs. There are next and previous buttons on each page. Whenever user fills data in one of the page and submits, a php file is called through ajax call. Validation for all the steps are done…
0
votes
1 answer

next button with enter key in parsley validator

I used parsley validation pack for two step form. this is html:
0
votes
0 answers

contact form 7 (Multistep) auto-fill field

I am trying to create a multiform with the plugin "contact form 7". Everything is working well with the form, but I am trying to get to the first form values in the second form. For example, my first form field is zip code. When I go to the second…
0
votes
1 answer

TYPO3: How can I allow third party query string parameters?

I have created a multistep order form extension which collects some user data and then redirect to different third party solutions for the payment step. This third party solutions (like PayPal) require a return url to find the way back to my form.…
Fox
  • 623
  • 8
  • 35
0
votes
0 answers

Javascript - Multi-step form doesn't work, "next" button won't work

I have to make a multi-step form for a website. I've used HTML, CSS and JS, but the JS seems to not work. The "Next" button is not working at all. On the website all the questions appear together, but I have to do something different. The "next"…
Init7
  • 1
  • 1
0
votes
1 answer

Hide Step from multiple step form depending on radio button selection

I successfully setup a 4 steps php form from this source. Only I'm having trouble with one task: On page one I inserted a radio button. Depending on the selection ("Yes" or "No") Step 3 should be skipped. I have been trying for 2 hours and searched…
Steve Pony
  • 63
  • 6
0
votes
0 answers

Laravel Multi-Step Forms with One-To-Many Data Model Implementation

I have a one-to-many data model which need to be populated through a multi-step forms. Is there any boilerplate or general guideline to implement this in Laravel? Let say there is this Company and Employee models with one-to-many relationship. Now,…
tekzoom
  • 49
  • 5
0
votes
0 answers

Form select in drupal ctools multistep form

I'm trying to use drupal ctools multistep wizard function for creating multistep form, and I have problem with select element. mymodule_multi_form_start($form, &$form_state) { $form['from'] = array( '#title' => t('from'), '#type' =>…
0
votes
0 answers

Rails: fatal (exception reentered):

I am trying to implement the railscast (http://railscasts.com/episodes/217-multistep-forms?view=asciicast) within a modal window. I am receiving the fatal (exception reentered) error message after I click submit on my first page. I believe that it…