Two-stage form (or two forms on one page)
-
I have a form that returns a number given a set of other numeric/boolean inputs. The form evaluates on click of a button.
I would like to take this output and use it for a second stage of the form, given further input. I would like this second stage to be evaluated on the click of a second button (given it requires further inputs – not all people will need to submit it).
Two ways I thought of doing this:
1. Adding more fields and buttons within the same form. Difficulty: having it evaluate separately. What is the onclick event to evaluate only a specific calculated field, or fields?
2. Adding a separate form below the first one. Difficulty: referencing the output of the field in the other form.
Which would be easiest, and how would I go about doing this?
Thanks!
- The topic ‘Two-stage form (or two forms on one page)’ is closed to new replies.