Field not Populating

I am facing a problem.I have two editable field.What I want that on “onchange” event of this two field I will want to calculate and store it in a computed /computed for display field.How to do that?Can anyone help

Subject: Field not Populating

The onChange event is supported only for certain field types, combobox and listbox if I remember correctly. (And you may have to check the “Run onChange/Exiting events when field value changes” box.)

If you need to use something other than one of these two field types you should check “Automatically refresh fields” on the form properties and see how that works out.

You could try using the Exiting event but that event does not always run, such as if the user saves and closes the document by clicking on an action button.

I would try making the fields dialogbox instead, do not display the helper button, and on each field check off the “allow entries not in list” and “refresh document when value changes” boxes. When the user clicks in the field and types a value, the form refreshes.

Subject: Field not Populating

Just to clairify, you have three fields, you want to calculate the values in the first two and display the result in the third?

What type of values will the two fields to be calculated have? Is this for client, web, both?

-JS