PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

How to add text that uses field values in multi page form

  1. shailash
    Member

    Hi, My issue is as follows

    1. Page 1 of multi page form, the user will enter a numerical value
    2. Page 2, i want to show this value in normal text (html field) and also show 25% of this value.

    Please can you advise how i can do this.

    Posted 11 years ago on Wednesday December 5, 2012 | Permalink
  2. Multi-page forms are not really multiple pages or forms but are one form. As such, you need to approach it from the perspective of populating one field in a form based on the input of another field. You can do this with jQuery or JavaScript. Here is one way:

    http://stackoverflow.com/q/2004315

    In your case, it sounds like you will have to do some math before displaying the 25% value, but it can still all be done in jQuery/JavaScript.

    Posted 11 years ago on Thursday December 6, 2012 | Permalink