Notifications
Clear all
Trading Post
3
Posts
2
Users
0
Reactions
84
Views
Topic starter
I'm trying to make a button (instead of a checkmark) that commits an obs value when clicked.
We have a diabetic foot exam form that once complete, only lists the information selected in the note, it does not push to an obs term that it was done.
Can someone help me with the language to put in the function to make it commit something like OBSNOW("DIAB FT CK") when clicked?
Thanks for any help.
Posted : June 13, 2013 7:03 am
Set the action button connection type to MEL Expression, and then write
{OBSNOW("DIAB FT CK","This is what is saved")}
If you want a button to undo this the code is
{OBSNOW("DIAB FT CK","")}
Posted : June 13, 2013 10:53 pm
Topic starter
Thank you very much Michael!
Posted : June 14, 2013 12:11 am