Repeating a value in another field
i make field in column equal amount entered in field , not familiar java script. using field in column total @ bottom.
using acrobat pro 9. in advance.
reg
there number of ways this. simplest give both fields same name , values automatically same. isn't possible, example if want 1 field read-only , other not. if that's case, can use following custom validate script first field:
// custom validate script
// set value of text2 field value
getfield("text2").value = event.value;
finally, can use custom calculate script second field is:
// custom calculate script
// set field value value of text1
event.value = getfield("text1").valueasstring;
More discussions in JavaScript
adobe
Comments
Post a Comment