Hi all,I create a text field witch is computed for display (myfield, value=“startvalue”).
Below this I have a button with the script
document.forms[0].myfield.value=“newvalue”.
An other button displays the value of the field with
alert (document.forms[0].myfield.value)
Here I can see, that the scipt which sets the new value works fine, but the form still shows the old value in the field.
How can I achieve, that the new value also is shown correctly there?
thanks
Michael