I am having an issues with spawned page calcs but have not seen a working formula. can you help with a working formula.
I basically have QTY + Price = Amount calc and then a simple amount.1 + amount.2 = total
I am having an issues with spawned page calcs but have not seen a working formula. can you help with a working formula.
I basically have QTY + Price = Amount calc and then a simple amount.1 + amount.2 = total
For Example:
// split field name on dots.
var aName = event.target.name.split(".");
// remove the original name
aName.pop();
// Build Prefix
var prefix = aName.join(".");
// Do Calculation
event.value = this.getField(prefix + ".QTY") * this.getField(prefix + ".Price");
Of course if you are tolking about dynamic xfa forms the process is very different.
Thom Parker
The source for PDF Scripting Info
www.pdfscripting.com
Very Important - How to Debug Your Script