I was wonder if/how to setup a section to only display say if a user is a nurse
Try - USER_JOBTITLE() == "Nurse" in a visibility field
Great! Thanks again.
Do you know if using the advanced setting of an item can accomplish this?
Not to "hide" something. You can disable fields using the enable/disable expression on Advanced settings. This will only gray the item out, it will be visible but unusable. Just check the box that says Use enable expression, the same code should work for the expression
Do you know the MEL for Role instead of Job?
description Lists current user roles. You an format them into a list with type Function syntax USER_ROLES (list_type) arguments
when to evaluate When Inserted in encounter forms returns User roles (such as physician, LinkLogic Manager) comment N/A example {USER_ROLES("comma")} returns Physician, LinkLogic Manager where used MEL expressions: to be used with the PageClose handler |
Perfect, thank you.