Previous | Next | (P-PDF) JavaScript
Topic: Re: setting values in fields
Conf: (P-PDF) JavaScript, Msg: 77232
From: jasendorf
Date: 11/26/2002 09:15 AM
This (and other less efficient methods) work just fine... except it seems that I am confused about onblur_...
I have the above code set in a field to set another field onblur_.
But, upon blurring after the change, no change to the second field takes place... UNTIL I focus on the typed field and blur AGAIN. Then the change takes place.
javascript in the Actions->On Blur->Javascript for the field which is being typed into:
this.getField("swearee2").value = this.getField("swearee").value;
Focus swearee... type in swearee... tab away from swearee to swearee2 nothing happens... tab BACK into swearee, tab out of swearee, swearee2 changes to show the value in swearee.
Any suggestions on why this is?