Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. The 'Gender' has to be 'Unknown'.

  2. The 'Race' should be 'White'.

Code Block
languagejson
{
           "name": "cpr.participant.ethnicities",
           "caption": "Ethnicity",
           "type": "pvs",
           "attr": "ethnicity",
           "optional": true,
           "multiple": true,
           "showIf": {
             "op": "And",
             "rules": [
               {
                 "field": "cpr.participant.races",
                 "op": "==",
                 "value": "'White'"
               },
               {
                 "field": "cpr.participant.gender",
                 "op": "==",
                 "value": "'Unknown'"
               }
             ]
           },
           "showInOverviewIf": "useShowIf"
}

...