javascript - Rendering a form as a multi step Wizard -


i have form rendering 5 step wizard using fuelux wizard.

i show value selected in previous steps , summary of values selected in final step.

one way can think of use html5 storage , using javascript populate.

what other ways value fields , populating on other fields?

fuelux javascript-based solution. there couple of options:

  1. render wizard inside of form (for_for or form_tag) , store user options in fields, , post upon clicking "submit" button @ end
  2. using following code fire ajax call save current step of wizard.

    $('#your_wizard').on('changed', function (e, data) { // $.post('/your/path/', { data: data, ... }); });


Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -