ABCDEFGHIJKLMNOPQRSTUVWXYZAAAB
1
typenamelabelhintrequiredrelevantappearancedefaultconstraintconstraint_messagecalculationtriggerchoice_filterparametersrepeat_countnoteimageaudio video
2
select_one my_listlistForce the lists to be included in the converted form. Also notice the choice_filter of true() to force creation of secondary instances. This won't be necessary starting with Central v2023.5false()true()
3
4
calculatelist_valuesjoin("|", instance('my_list')/root/item/name)
5
calculatelist_labelsjoin("|", instance('my_list')/root/item/label)
6
7
notenote_listList values: ${list_values}

List labels: ${list_labels}
8
9
textfirst_letterSpecify a first letter to filter by
10
11
calculatelist_values_filteredjoin("|", instance('my_list')/root/item[starts-with(label, ${first_letter})]/name)
12
calculatelist_labels_filteredjoin("|", instance('my_list')/root/item[starts-with(label, ${first_letter})]/label)
13
14
notenote_list_filteredList values: ${list_values_filtered}

List labels: ${list_labels_filtered}
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100