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
1 answer

Drupal 8 Webform: how to display text input on one page on the next page?

I am trying to develop a multistep webform in Drupal 8 using Webform 8.x-5.1. I have written a WebformHandler that extends Drupal\webform\Plugin\WebformHandlerBase and made it available to the webform. In the first step of the webform, I collect a…
Stephen Winnall
  • 301
  • 3
  • 14
1
vote
0 answers

Problem redirecting data to a correct phase in a multi-step form

I am working on a multi-step form whose backend is Laravel. The main view contains a multi-step form and am pulling different phases of the form into this one file layout. I want when the user fills the 1st phase of the form and hits submit button,…
Pweb
  • 155
  • 1
  • 4
  • 18
1
vote
0 answers

echo on button class

I'm trying to build a multi step selector which has multiple combinations in every slide. for example hou have btn1, btn2 and btn3. Every button will display other content in the next slide. It's an inpage multistep slider so I can't use onClick,…
1
vote
0 answers

Multi step form with email validation trouble

I am implementing this multi step form with validation on my website: https://www.w3schools.com/howto/howto_js_form_steps.asp All works perfectly, I modified the code slightly to also validate select drop downs. My problem is that I can't get the…
MrM
  • 11
  • 2
1
vote
1 answer

Creating a wizard-style form spanning multiple models

As the title suggests, I'm looking for a solution to implement a wizard-style form, which would span multiple models. Of course I did find a few resources but all of them focussed on a single model. I found The acts_as_wizard plugin Ryan's…
Shreyas
  • 8,737
  • 7
  • 44
  • 56
1
vote
1 answer

How to create a ruby on rails custom multi-step form instead of using gem

I have a standard form and there are few fields groups like main information, address, business address, etc. I'd like to build step-by-step form instead one-page form with a lot of fields. What is the best way to do that? I found…
Ivo Dimitrov
  • 307
  • 1
  • 4
  • 12
1
vote
1 answer

Most efficient way to code a large multi-step form in .NET?

I have a large multi-step form that will insert a record into a database. I'm using ASP.NET and I know there are some pre-made controls you can use for this, but I'm not all that familiar with all of them. The formview seems to be a good control,…
Sara
  • 185
  • 2
  • 5
  • 16
1
vote
1 answer

AngularJS - Multistep form with UI Router and Navigate using arrow keys

How do I go to next or previous form step using arrow key. I'm using AngularJS UI Router. The code below working fine with prev and next button to navigate. .config(function($stateProvider, $urlRouterProvider) { $stateProvider //…
sanu
  • 1,048
  • 3
  • 14
  • 28
1
vote
2 answers

Rails wicked wizard with javascript

I want to create a wizard in js. steps :first_step, :second_step In my 'controller_step' def show case step when :first_step @r = R.new when :second_step end …
1
vote
0 answers

How to implement Multi-step ahead regression with LSTM in Keras?

I'm new to Keras . I want to predict the next 30 values of a time series using the previous 10 values of features (5 different features). Here is my code but I am almost sure that it is not the right way to do that. any idea? # features is a…
user3157047
  • 479
  • 5
  • 15
1
vote
1 answer

ruby on rails multiple step form

I have been doing some research into using multistep forms for my ruby on rails project, and have come across the wicked gem which seems to tick all the boxes. Upon further investigation, I see it is only good for showing/updating. does anyone know…
Boss Nass
  • 3,384
  • 9
  • 48
  • 90
1
vote
2 answers

What are some best practices for multi-step forms in Coldfusion?

I have a three step form where each step posts to its own action. The action redirects to the next step. The data is stored in the session scope. I have a filter that prevents a user from accessing the form handlers through anything other than a…
Mohamad
  • 34,731
  • 32
  • 140
  • 219
1
vote
0 answers

Redirection in multistep form CakePHP

I am creating a multistep form in CakePHP using http://bakery.cakephp.org/2012/09/09/Multistep-forms.html? But it's not redirecting well. As I click next in step 1, it redirects me to msf_index. Probably I'm not proceeding the right step count in…
Muhammad Usman
  • 2,419
  • 1
  • 11
  • 18
1
vote
1 answer

Building stepwise (aggregated) sum

I have a question related to aggregating data. Is there a fuction that does stepwise sums of an array. There must be some easy way but the words I googled didn't seem to be the right ones. So essentially what I want to do is this mydata =…
horseshoe
  • 1,437
  • 14
  • 42
1
vote
1 answer

Wicket basic implementation of wizard steps

is there any basic implementation wicket 6.20 provides for a step overview functionality like in this picture or like this if the other won't work? When looking at the documentation I couldn't find anything close to it, so I started by doing my own…
Peter
  • 1,844
  • 2
  • 31
  • 55