Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Adobe Summit 2023 [19th to 23rd March, Las Vegas and Virtual] | Complete AEM Session & Lab list
SOLVED

ACS Commons 3.19.0, Nested Multi-field, Checkbox State.

Avatar

Level 5

Hi, 

I am using the ACS Commons multi-field extension for my Touch UI dialogue. The Touch UI dialogue consists of 1 multi-field with a child of "checkbox". 

As an author, I will create 5 instances of the multi-field, and un-tick all the check boxes. When I save, I get a successful save status. When I re-configure the dialogue, I'm surprised to see that the check boxes are infact checked. This is because onSAVE, the values are not saving unchecked. Why is ACS commons not respecting unchecked? Seems like the value="true" is locked down, meaning that regardless of anything set, the value="true" will be set.

How would I get the checkbox to show it's state properly".

 

<field
    jcr:primaryType="nt:unstructured"
    sling:resourceType="granite/ui/components/foundation/form/fieldset"
    acs-commons-nested=""
    name="./listItems">
    <layout
        jcr:primaryType="nt:unstructured"
        sling:resourceType="granite/ui/components/foundation/layouts/fixedcolumns"/>
    <items jcr:primaryType="nt:unstructured">
        <column
            jcr:primaryType="nt:unstructured"
            sling:resourceType="granite/ui/components/coral/foundation/container">
            <items jcr:primaryType="nt:unstructured">
                <isLabeled
                    jcr:primaryType="nt:unstructured"
                    sling:resourceType="granite/ui/components/coral/foundation/form/checkbox"
                    fieldLabel="Is Label"
                    name="./isLabeled"
                    text="Is Labeled"
                    uncheckedValue="false"
                    value="true"/>
            </items>
        </column>
    </items>
</field>

 

 

 

 

Thanks.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

There is a problem with using the ACS Commons multi-field extension with the checkbox Granite UI Component. The solution here is to replace the checbox with the sleect Granite UI Component.

The full solution can be found here, https://sourcedcode.com/blog/aem/acs-commons-multi-field-extension-acs-commons-nested-checkbox-is-no...

 

3 Replies

Avatar

Community Advisor
What version of AEM are you on?

Avatar

Level 5
AEM 6.4.8, I still need help. ACS Commons 3.19.0

Avatar

Correct answer by
Community Advisor

There is a problem with using the ACS Commons multi-field extension with the checkbox Granite UI Component. The solution here is to replace the checbox with the sleect Granite UI Component.

The full solution can be found here, https://sourcedcode.com/blog/aem/acs-commons-multi-field-extension-acs-commons-nested-checkbox-is-no...