-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.json
54 lines (45 loc) · 1.27 KB
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "Complete Row",
"description": "Colors each row of an instrument - if a value has been provided. This will highlight rows with missing values to improve their visibility.",
"namespace": "ABCD\\CompleteRow",
"authors": [
{
"name": "Hauke Bartsch",
"email": "HaukeBartsch@gmail.com",
"institution": "ABCD Study, UC San Diego"
}
],
"permissions": [
"redcap_data_entry_form_top",
"redcap_survey_page_top"
],
"enable-every-page-hooks-on-system-pages": false,
"links": {
},
"no-auth-pages": [
],
"system-settings": [
],
"project-settings": [
{
"key": "row-color",
"name": "Color used to highlight rows with an entered value",
"required": false,
"type": "radio",
"choices": [
{ "name": "red", "value": "#ffe6e6" },
{ "name": "green", "value": "#DBF7DF" },
{ "name": "blue", "value": "#99ddff" },
{ "name": "stay green", "value": "#DBF7DF" }
],
"default": "#DBF7DF"
},
{
"key": "row-color-manual",
"name": "Manually set row color (clear this field to use a predefined color)",
"required": false,
"type": "text",
"default": ""
}
]
}