Notifications
Clear all
Topic starter
I'm using a "data display" field to calculate and give me an answer. Is it possible to do the same thing with an "edit field" so that way I can save answer to an obs term? If so, does anyone know how to do it?
Posted : March 17, 2015 3:35 am
Create a watcher function for the edit field as follows:
{ Call Stuff_obs(document.Your_Edit_Field)}
{fn Stuff_obs(strYour_Edit_Field)
{
obsnow("Your_Obs_Term",strYour_Edit_Field)
}
}
Posted : March 17, 2015 5:40 am