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

Multistep LSTM: Why am i getting the same curve/pattern for each prediction?

I'm new to tensorflow and LSTM models (and coding in general) and would really appreciate some help. I'm getting somewhere, but no matter what i try i seem to always get the same pattern in each prediction i make. Image of part of my predictions…
1
vote
0 answers

jQuery steps custom previous step

I am using a multiform with jQuery steps. However it has custom steps to make based on the user's decision. Both the next and previous buttons have their own respective steps to make, and how weird it is the next button does it's job but the…
1
vote
1 answer

Multi step form (no next button) with conditional logic

I'm using a multi-step form from this question and answer on StackOverflow To add to this form; 1.) how can it work with conditional logic, as in, if the user's input radio first question is to choose ppc or organic, if they select organic then only…
1
vote
1 answer

Multi-Step Ahead Time Series Forecasting (Using Direct Approach)

So I'm relatively new in R and I was wondering what's wrong with my loop forecasting multi-step time series. I first have this loop to mimic the information set at time τ and estimate the models based on a rolling window of 1000 observation and make…
1
vote
0 answers

Keras RNN univariate multi-steap-ahed, t+2 has better performance than t+1, input/timestep/RNN structure problem

I have a problem when using RNN and want to predict multiple steps ahead. The code is 'working', but the output does not make sense, basically the t+2 is a lot more accurate than t+1 and the same goes for t+3, and it is very counterintuitive that…
1
vote
2 answers

Multi Step Form on Modal

I am trying to use Bootstrap Multi Step Form on Bootstrap Modal. I am trying to use this Form. My code is like below. Multi Step Form
abu abu
  • 6,599
  • 19
  • 74
  • 131
1
vote
0 answers

Render Django multi-steps forms

I want to create a multi-steps (model)form: my objective is to have it split in 4 pages, each with a save/update function and the possibility to entierly skip a page (when i have only optional fields). I created a models.py with 4 classes(and…
1
vote
0 answers

1D CNN for multistep multiclass timeseries classification

Suppose you have a timeseries classification task with n_classes possible classes, and you want to output the probability of each class for every timestep (like seq2seq). How can we achieve mult-step multi-class classification with a Conv1D…
1
vote
1 answer

Multi Step Form Handling using React and Django Rest Framework

I have a three step form to add a story in database When user fills the step one form, all the step one data will be added to the story table and the user will be redirected to step two. I have written three views for step one, two, three. My…
lazyCoder
  • 499
  • 1
  • 4
  • 17
1
vote
1 answer

interesting multistep forms in django

I have a multi-step form but it is a little different from commons. The difference is not all steps are consecutive and forms may be inorder. To be clear, let say there are Form1 , Form2 , Form3 and Form4. Those may run like Form1 - Form2 - Form3 or…
brsbilgic
  • 11,613
  • 16
  • 64
  • 94
1
vote
2 answers

Three step order form, best way to repopulate inputs

Currently working on a nice three step order form for a wedding photographer, so guests can order pictures. I've set the form up in 3 steps. 1.user details 2. review order 3. confirmation What's the best way to repopulate the form data if the user…
eagleworks
  • 67
  • 1
  • 2
  • 6
1
vote
0 answers

Angular 7 multi step form - Creating a multi-step form

how to create a registration form with angular 7 on several steps knowing that it is necessary to launch a call to a service remained at the last step ?? with this principle http://angular-multi-step-wizard.azurewebsites.net/#/personal
1
vote
1 answer

jQuery multi step form, skip steps depending on selection

I am creating a multi-step form based on this tutorial here: https://www.phpflow.com/php/multi-step-form-using-php-bootstrap-jquery/ It's working perfectly fine if I need to simply navigate back and forth throughout the form. However, I need to be…
Jaffa
  • 23
  • 1
  • 1
  • 6
1
vote
0 answers

Multistep form in bootstrap with final review functions in jquery

I want create a multistep form with the help of bootstrap and jquery but issue is I am not able to create page previous preview means back button functon from page 2 to page 1 and so on, or not able to create last final form submit review in jquery.…
J. Doe
  • 7
  • 7
1
vote
1 answer

Symfony4 - Validate fields based on values of other fields

I am building a very large form with multisteps and some conditional fields and cannot find a good solution for my problem. For example if field A is "Foo" then field B is shown via Javascript and must be validated via Symfony, otherwise the field…
1 2
3
10 11