Hi All,
I have a AEM 6.0 ExtJs checkbox group as:
<recurrentDays
jcr:primaryType="cq:Widget"
allowBlank="{Boolean}true"
fieldLabel="Repeats on..."
name="recurrenceDays"
type="checkbox"
xtype="selection"
value="0">
<options jcr:primaryType="cq:WidgetCollection">
<o1
jcr:primaryType="nt:unstructured"
text="Sunday"
value="1"/>
<o2
jcr:primaryType="nt:unstructured"
text="Monday"
value="2"/>
...
<o7
jcr:primaryType="nt:unstructured"
text="Saturday"
value="7"/>
</options>
</recurrentDays>
The checkboxes use one name only, so that it will store a comma-delimited string value in /crx/de, such as "1,2", if Sunday and Monday are checked. What's equivalent in Granite/Coral? I try checkbox/selection but no luck. I try to migrate the code as much as possible so I would not have to modify the code in the Sling Model.
Thanks!
-kt