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
63
votes
8 answers

Build Step Progress Bar (css and jquery)

You've seen iterations of this type of progress bar on sites like paypal. How does one go about setting this up using CSS and jquery? I have 4 pages and each page is a step... so 4 steps.
WillingLearner
  • 7,106
  • 6
  • 34
  • 51
13
votes
2 answers

Exchange Data between multi step forms in Angular2: What is the proven way?

I can imagine following approaches to exchange Data between multi step forms: 1) Create a component for each form step and exchange data between components over @input, @output (e.g. you cannot change from step5 to 2) 2) Use the new property data…
user2227400
11
votes
3 answers

Creating multi step forms

I have been searching around for a way to create a multi step form such as: http://planner.builtbybuffalo.com/step-1/ I couldnt find any resources, just other examples, the one I am trying to create will be a 3 part process. I am going to be…
user39980
6
votes
1 answer

Rails 3 multi-step form with file upload

I having some trouble trying to figure out how to implement a Rails 3 multi-page form with file uploads, where each step is handled by the update/edit actions in the controller. Ryan Bates provided his wonderful screencast for how to to do…
kwiksilvr
  • 63
  • 5
6
votes
1 answer

Best practice/design for a multi-page form in .NET MVC3

I am working on a web application that involves the user filling out a multi-step form that spans several pages. The form has tabbed navigation across the top (these links do not submit the current page) and a next button at the bottom (which does…
ChaseMedallion
  • 20,860
  • 17
  • 88
  • 152
4
votes
0 answers

LSTM Timeseries recursive prediction converge to same value

I'm working on Timeseries sequence prediction using LSTM. My goal is to use window of 25 past values in order to generate a prediction for the next 25 values. I'm doing that recursively: I use 25 known values to predict the next value. Append that…
user3375448
  • 695
  • 6
  • 14
4
votes
1 answer

Rails Multi-Step Form without Wizard Gem

I have a Rails 3.2.14 app which collects call data. The new and edit action form is pretty long on one page. I'm looking to implement a multistep form that uses JS/client side processing to move along the steps. I've looked at the Wicked Gem as a…
nulltek
  • 3,247
  • 9
  • 44
  • 94
4
votes
2 answers

Rails 3, large multi-step form: 1 large controller or separated by resource?

I have a multi-step form where the user fills out info on several different pages. In conventional rails, you keep each resource separate in its own controller and you use the REST actions to manipulate the data. In the conventional system I would…
Dan L
  • 4,319
  • 5
  • 41
  • 74
4
votes
3 answers

Umbraco Contour Multi step forms - deciding next step based on user input

I am using UmbracoCMS and Contour_1.1.12 While creating multi step forms, i need to dynamically decide, which form will be visible in the next step, based on certain field values the user has provided in the previous step. For example in contour…
user1344502
  • 75
  • 1
  • 1
  • 8
3
votes
1 answer

Multistep Nested Forms Using Rails

I'm trying to implement a multistep form using a nested form, but since I'm using a nested form, it's not working out like the railscast. I got this from railscast #217 (multistep form/wizards) http://railscasts.com/episodes/217-multistep-forms old…
Reti
  • 609
  • 4
  • 10
  • 21
3
votes
1 answer

spring-batch (java-config) identifying and executing step using JobExecutionDecider

I have 3 steps A, B, C which should execute in the sequence A->B->C where B is optional. I've to execute step B only based on some condition. I'm using JobExecutionDecider to decide as follows: @Bean(name = "decider") JobExecutionDecider…
3
votes
1 answer

Wicked Rails Gem Help Wiring Up

I want to do a multi-step form for taking in new information. One page I want to collect name/contact info, the next page I want to collect medical history, the third page demographic information. I've installed the Wizard gem and generated a…
nulltek
  • 3,247
  • 9
  • 44
  • 94
2
votes
1 answer

Drupal 7, form won't get rebuilt

I'm building a multistep form and I don't want users to lose any storaged information if they accidentally refresh the page. Steps to reproduce: 1) Press 'ok'-button 2) var_dump($form_state['multistep']['step']) == 2 3) Refresh page 4)…
pikku-h
  • 73
  • 2
  • 7
2
votes
1 answer

Way to get updated values and errors in a child component in formik?

I am making a multi stepper form and i have divided the steps into separate component and am passing it as children between the parent formik component. Like this Is there a way to get the values and…
H.b
  • 239
  • 2
  • 13
2
votes
2 answers

Best approach for a secure Rails 3 MultiStep Order Form without authentication

Right, im building an order form for a site that doesn't require any kind of user signup or authentication. The form has three models: Order, OrderImage, Print. An order form has many OrderImage's and an OrderImage has many Prints. A user requires…
Pete
  • 1,472
  • 2
  • 15
  • 32
1
2 3
10 11