Hi, I want to populate 2 hidden quantity fields with the same data from a number box on the same page of the same form, is this possible? I've seen other examples that pull data from a previous page but none that do it from the same page.
Thanks
Hi, I want to populate 2 hidden quantity fields with the same data from a number box on the same page of the same form, is this possible? I've seen other examples that pull data from a previous page but none that do it from the same page.
Thanks
Do they need to be populated before the form is submitted? If so, you will need to do this with jQuery: watch for the value to be entered in the number box, then populate your hidden field. Check out the jsfiddle demo linked in this answer at stackoverflow: http://stackoverflow.com/a/10884755
If you can do it after the form is submitted, you can use the gform_pre_submission filter to copy the value from one field to another: http://www.gravityhelp.com/documentation/page/Gform_pre_submission