Default OpenSpecimen field values or custom dropdown field values can be configured per CP. The fields can be dropdown, radio button, multi-select.
Use case: A study is dedicated to the participants of cancer relapse. The Principal Investigator (PI) wants users to add participants for only clinical status values - "Relapse, Distant Site", "Relapse, Not Specified" and "Relapse, Primary Site".
Info |
---|
Add the below code in the dictionary section of the JSON workflow. |
Code Block | ||
---|---|---|
| ||
{ "name": "visit.clinicalStatus", "caption": "Clinical Status", "type": "dropdown", "optional": false, "defaultValue": "Not Specified", "showIf": { "op": "AND", "rules": [ { "field": "visit.status", "op": "!=", "value": "'Missed Collection'" } ] }, "listSource": { "options": [ "Relapse, Distant Site", "Relapse, Primary Site", "Relapse, Not Specified" ] } } |