I have something similar to this, I have a numeric field1 = .59 +
numeric field2 = .31 should = .90, if I display result in console I get
0.8999999999999999, if I display result in numeric field I get .90.
I have a form with a table and a text boxThe table has 9 columns, and 15
rows. In the table I have debit and credit columns. These columns are
setup as numeric with float selected.In the calculate event of the
non-table text box I have a JavaScript that adds the credit rows and
puts in a var cred, adds debit rows and puts in a var deb. it looks like
thisvar cred =
xfa.resolveNode("#subform[1].Table1.Row1.Credit_Row1").rawValue +
xfa.resolveNode("#subform[1].Table1.Row2.Credit_Row2").rawValue;var...
I think this is what you are trying to do I hope it helps.try changing
fields to invisible, then in the change event of DDLif (this.rawValue ==
"1"){ textBox1.presence = "visible" textBox2.presence = "visible"
textBox3.presence = "invisible" textBox4.presence = "invisible"}else if
(this.rawValue == "2"){ textBox1.presence = "invisible"
textBox2.presence = "invisible" textBox3.presence = "visible"
textBox4.presence = "visible" }
I had the same issue after I removed reader from my computer. to fix
Iopenedcontrol panel >programs and features > selected adobe pro >
change > and repair option
I have a form with text fields that change the fill color of some
fields. when the form is signed it locks the fields and asks me to save.
when I open the saved copy the fillColor reverts back to original color
(white or none). How would I go about making sure the fillColor stays
the same after the form is signed and saved then the saved copy is
opened?any help or suggestions would bee great.thank you in advance
I would make sure the form is distributed, distributing the form
activates more features in adobe reader.if you still want to get rid of
purple bar try placing this code in the docReady
eventevent.target.viewState = {overViewMode:5};
I have a certified form with 3 additional signature lines. since
resetData does not work on certified forms I need a javascript command
to rest the three signatures. Any help would be great.