Multiply numeric fields by user entered input
Hello I am wondering if any one help me.. I have very simple calculation but got stuck I have more then 59 numeric fields that i wan to multiply by user entered data!!
I just want when any one enter at QUANTITY field 2 or whatever they want the last Grand total field will show 160 as the text1 price is 80.00 $, so far I have this js code but this code is work only one field.
// Get first field value, as a number
var v2 = +getField("Text2").value;
var v3 = +getField("Text3").value;
// Calculate and set this field's value to the result
event.value = 80 * (v2);
event.value = 80 * (v3);
So I want there will be text1 to text 59 in same condition
event.value = 80 * (v2);
will be change according to item price...
