Changes

Jump to: navigation, search

Visibility Condition

1 byte removed, 18:56, 16 January 2012
no edit summary
* For an '''OR''' condition use two pipes (|)
'@status@' = 'Closed' || '"@me.fullname@'"='"Jane Doe'"
''The above field will be visible either if the status of the record is ''Closed'', OR if the user viewing the record is named ''John Doe''.''
* For an '''AND''' condition use two ampersands (&)
'@status@' = 'Closed' && '"@me.fullname@''"='"John Doe'"
''The above field will be visible only if the status of the record is ''Closed'' AND the user viewing the record is named ''John Doe''.''
* You can also use a combination of these, using brackets to control the order of validation:
( '@status@' = 'Closed' || '@status@' = 'Cancelled') && ('"@me.fullname@'"='"John Doe' " || '"@me.fullname@'"='"John Deer' " || '"@me.fullname@'"='"Dear John'")
''The above field will be visible only if the status of the record is either ''Closed'' OR ''Cancelled'', AND the user is one of the 3 named users.''
0
edits

Navigation menu