Hi,
In Classic UI we could created multiple checkbox using selection xtype
<multiplecheckbox
jcr:primaryType="cq:Widget"
allowBlank="{Boolean}true"
disabled="{Boolean}false"
fieldLabel="Industries"
hideLabel="{Boolean}false"
name="./tagging"
options="/apps/project/components/content/abc/xyz.json"
type="checkbox"
xtype="selection"/>
now under /apps/project/components/content/abc/xyz.json the value could
[
{"text": "tag1", "value": "tag1"},
{"text": "tag2", "value": "tag2"},
{"text": "tag3", "value": "tag3"},
]
Now when the dialog is submitted this will store under property tagging as String array.
Please let me know how i could achieve the same using touch ui. Any samples would help