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:
- render wizard inside of form (for_for or form_tag) , store user options in fields, , post upon clicking "submit" button @ end
using following code fire ajax call save current step of wizard.
$('#your_wizard').on('changed', function (e, data) { // $.post('/your/path/', { data: data, ... }); });
Comments
Post a Comment