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.
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.
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.