Previous | Next | (P-PDF) What's Wrong with my PDF?
Topic: The Value entered does not match the format of the field
Conf: (P-PDF) What's Wrong with my PDF?, Msg: 156612
From: sunny_ventura
Date: 12/6/2006 11:07 AM
I'm working on a pretty simple form that adds two columns of text
boxes, another text box divides that total by 2000 (to get tons) another
text box asks for those totals in tons to be divided by one another to get
a percentage: (all text boxes are formatted in numbers except textbox31
which is percentage)
var f = this.getField("Text028");
var g = this.getField("Text030");
event.value = f.value / g.value;
Additional info: text box 30 has this script:var f = this.getField("Text28");
var g = this.getField("Text29");
event.value = (f.value + g.value);
text box 28 has this script:
var f = this.getField("Text27");
event.value = (f.value / 2000);
Can you please clue me up to why I'm getting the error: The Value does
not match the format of the field (text31)