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

Getting jquery multistep working

I'm trying to make a multistep form with jquery using this: https://github.com/sheadawson/jquery.multistep But so far I can't seem to get it working properly because it doesn't hide the other steps, can anyone provide me with an example on how to…
Stephan-v
  • 19,255
  • 31
  • 115
  • 201
0
votes
1 answer

Multistep forms using CodeIgniter

I am trying to build a multistep form with CodeIgniter,but I cant figure it out how it should be.My thoughts are to create for each step different contoller functions and views. Is my thought right or is there any better way to implement it? Do you…
0
votes
1 answer

Multi Stage Contact Form - PHP

http://webexpedition18.com/download/signup_form_WebExpedition18/ Hi Guys, The above multi-stage contact form works great for my own project. It looks great and does the trick but i am stumped when trying to get the information submitted via…
0
votes
2 answers

Multi-Step Post with Php and Javascript?

i have a 4 step form , i made it like 4 pages formstep1.php , formstep2.php , formstep3.php . These forms belongs to different tables on database.. I want to make it like for example ; when i submit the first form , current page shouldnt…
OMahoooo
  • 427
  • 3
  • 9
  • 19
0
votes
1 answer

Multiple step MODEL rails

I want to create an event by users using multiple steps for the creation. At the moment I have the following problem that it redirects to the first step after completing the second step. The following is my controller def new @event =…
user1884013
  • 67
  • 1
  • 5
0
votes
1 answer

rails 3 multiform geocoder

Using railscast 217 (multistep/wizard) from and geocoder. What I want to do is have the user enter a meeting location on the first part of the form, then on the second part of the form have geocoder return a list of addresses that geocoder has…
0
votes
2 answers

How to protect current form sessions from Conflict

I have a form that has 3 steps. I use SESSIONS to keep values from step to step. When I open the same form in another tab and complete the first step, this immediately replaces the Session values from the other form. So how can I create sessions…
George D.
  • 1,630
  • 4
  • 23
  • 41
0
votes
3 answers

How to divide a huge process into multiple steps in php?

I need to process an xml file and insert some data accordingly to my database. Since the XML file contains close to 10000 lines and there could be some thousand rows to insert to database I'm afraid my script will exceed max execution time. I've…
2hamed
  • 8,719
  • 13
  • 69
  • 112
0
votes
2 answers

How can I use Jquery to get PHP data step by step?

I'm having a little problem with jquery with php combination. Let me begin with the codes. PHP Code : if ($_POST["request"]==10) progress(); function progress() { $files = getfiles(); $progress = 0; $progressRate =…
Faouzi FJTech
  • 981
  • 3
  • 13
  • 27
0
votes
2 answers

Encoding Json from MySQL

So I am trying to encode to JSON from MySQL and I need it in a [pagenumber][id,type,description][answerid,answerdescription] format. The goal of this is to read the data in a javascript file that will generate a multi step poll for me. I will try to…
Tom
  • 1,747
  • 5
  • 23
  • 39
0
votes
1 answer

Cannot save tag_list when using multi-step forms

I have a belonging model that allows user to post objects to be sold or rented on my website. I recently changed the form, making it a multi-step form: a first form asks the name of the object and if the object is for sale or to rent, a second form…
citraL
  • 1,146
  • 1
  • 10
  • 25
-1
votes
0 answers

why the validations error aren't being printed on the page?

i am creating a form, instead of using manual validations, i read using the validations provided by react-hook-form and yup are more efficient and can save a lot of time , so on the website i follow the instruction, i was getting the error…
-1
votes
1 answer

Animation Jquery reboot

I am having problems with my jquery animations, after submitting the form when performing the submit action, I want to chain the animation back to step 1, but I can't do it, and when I want to go to step 2 the bar appears again progress progress ..…
Martan
  • 1
-1
votes
1 answer

Multi-step LSTM Time series prediction

I am trying to build an LSTM model for Multistep prediction. My data is a time series of parking occupancy rate sampled each five minutes (I have 25 weeks of samples). I started creating the code like below : import numpy as np training_data_len =…
-1
votes
1 answer

multistep comparison test python

I wanna implement a class overloading and conclude if an event with a given point of time for example 12:59:50 happens before another event so the output is true or false, just a simple comparison test. I implemented it, as you can see, but, i'm…
user4411105
1 2 3
10
11