Answered
Javasript help
box1 = 500
box2
box3 = box1- box2
I want the field value from box1 to display and active only when there is value in box2.
The script please For box1?
box1 = 500
box2
box3 = box1- box2
I want the field value from box1 to display and active only when there is value in box2.
The script please For box1?
Try this:
event.value = this.getField("box2").value != "" ? 500 : "";
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.