


i have a text field which i am trying to change by using a dropdown.
form1.purchaseOrder.header.DropDownList1::change - (JavaScript, client)
if (this.rawValue == 1)
EstimateValid.xfa.resolveNode("caption.value.#text").value = "Due to material price changes throughout the year all our estimates are valid for a period of 30 days unless mentioned otherwise elsewhere in this estimate.";
else
EstimateValid.xfa.resolveNode("caption.value.#text").value = "This is not a V.A.T. receipt. If you require a V.A.T. receipt please ask for the receipt for the car parts purchased for your car.";
the binding has been set up
any pointers please
Views
Replies
Sign in to like this content
Total Likes
Hi,
You need to take the xfa out of the assignment, should be just
EstimateValid.resolveNode
not
EstimateValid.xfa.resolveNode
Regards
Bruce
Views
Replies
Sign in to like this content
Total Likes
Hi,
You need to take the xfa out of the assignment, should be just
EstimateValid.resolveNode
not
EstimateValid.xfa.resolveNode
Regards
Bruce
Views
Replies
Sign in to like this content
Total Likes