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

react multi step change the button text on specific step

I am using the following code where I am trying to change few things https://github.com/srdjan/react-multistep In the last step I am trying to change the button text as Submit instead of continue but couldn't also the last button was always in…
Developer
  • 8,390
  • 41
  • 129
  • 238
0
votes
0 answers

bootstrap multi step form validation with insert update in database via js ajax

I'm stuck in multiple step form with 10pages on landing page to validate and input text should insert and update in database without submit once user fill any value in input then that value insert in database otherwise update thanks in advance
0
votes
1 answer

Running read for each thread of taskExecutor so getting repeated data in Multi-threaded Step

creating a job to fetch the data from the big query and process it. My approach is to get the data in the reader and then run it in the chunks and use task executor to run the chunks in different threads. TripDateTimeDecider is used to decide the…
NIRAJ KUMAR
  • 163
  • 1
  • 1
  • 11
0
votes
0 answers

How to pass selected object from a flat list to other screen in react-native

I have a multistep form which contains different objects that I pass them to the final step (submit form). At a point on my multistep form there is a card list selection where user has to select a specific card in order to move to the next step and…
Josephy22
  • 3
  • 4
0
votes
1 answer

Multistep form vue

**I'm trying to reform a multistep form, but my first step and second step are visualised both at the same time now. Even though my app data is having an activePhase data stored. It seem like I should be using as a method some emit logic? Or as I'm…
user20984971
0
votes
0 answers

Hiding previous button and dynamically adding submit button in vanilla JS multi-step form?

I am building a multi-stage form in vanilla HTML/CSS/JS and bootstrap. I would like assistance amending my codepen so that: On the first step/tab, the previous button is not displayed. Currently, it appears if you press the previous button and…
trusaiyan
  • 1
  • 2
0
votes
0 answers

Direct Multi-Step Ahead Time Series Forecasting using R

I am building a multivariate model for direct time series forecasting, where the goal is to make 4 and 8-step-ahead forecasts using random forest and SVR. The results look very similar to my 1 step-ahead forecast and I am wondering whether my code…
0
votes
0 answers

Time serie forecasting without target history

Hello i'm trying to identify the different time serie forecasting methods i could use according to my specific problem: I would like to perform: A Multi-Step Multi-Variate (some covariates with seasonality) Forecasting problem without knowing…
0
votes
0 answers

Build Laravel multistep form with foreach?

Good morning, I want build a multistep form in Laravel and I discover a lot of tutorial on Youtube to make this but In my form, I use a Foreach because I build a exam system and I display Question and Response with foreach. This is my Code :
Chrisdev
  • 39
  • 7
0
votes
1 answer

Bootstrap 5 - form multi step wizard - validation one page at a time

I have a problem with my multi step form. Whenever I click the "next" button, instead of just the current tab being validated, it validates all the tabs on the form. How can I do to just validate only the current TAB? If I have a form in each TAB,…
0
votes
1 answer

How to use web route for auth controller in laravel 8

I wanted to use multi step registration. But got trouble at route. This is my first route. Route::get('register-step2', [Auth\RegisterStep2Controller::class,'showForm']); Route::post('register-step2', [Auth\RegisterStep2Controller::class,…
0
votes
0 answers

Multi-Step Form Required Fields To Go to Next Step

I'm trying to merge two codes for several days now without success. Is there someone who can help me with that please ? I'm a total beginner with web developpment, i'm sorry if it's a mess. It's all copy-paste essentially. The first part of the…
Ali
  • 1
  • 1
0
votes
1 answer

Multi step form using react hooks

There's a project I am working on. I have a challenge in implementing something. I have four arrows to show the progress of a form which is Active-Next-Inactive-Completed. Each state should be distinguished using different colours on the…
Annie
  • 33
  • 11
0
votes
0 answers

Mutlithreading: synchronize threads to perform several steps race condition

I want to create 15 threads and have them performed 4 successive steps (that I call Init, Process, Terminate and WriteOutputs). For each step I want all threads to finish it before passing to the following step. I am trying to implement it (cf code…
romain.bqt4
  • 159
  • 1
  • 6
0
votes
0 answers

Out of sample multi-step forecasting with ARIMA using train data and predictions only (Python)

I want to forecast multiple steps ahead using ARIMA. I am deriving my hyper-params with a grid search. I want to achieve multiple one-step forecasts. However, I do not want a rowling forecast that uses new actual observations, but I want the model…
Lio
  • 3
  • 4