Set default values for fields inside multifield in AEM Touch UI | Community
Skip to main content
Level 2
February 11, 2020
Solved

Set default values for fields inside multifield in AEM Touch UI

  • February 11, 2020
  • 3 replies
  • 5956 views

I want to set default values for fields inside coral ui multifield. I tried to use cq:template but not sure of how to set values for fields inside aem multifieds. Can anyone help me out with this?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

3 replies

santhosh_kumar6
February 11, 2020

Hi, Use "value" property for the fields to set the default values for the dialog fields.

BrianKasingli
Community Advisor and Adobe Champion
Community Advisor and Adobe Champion
February 11, 2020

Hi @nikhil1986 

Adding the property "value" to your dialogue input fields would be your solution. 
Take a look at the example below:

 

 

<navigationLinks jcr:primaryType="nt:unstructured" sling:resourceType="granite/ui/components/coral/foundation/form/multifield" fieldLabel="Navigation Links"> <field jcr:primaryType="nt:unstructured" sling:resourceType="granite/ui/components/coral/foundation/container" name="./navLinks"> <items jcr:primaryType="nt:unstructured"> <fieldset jcr:primaryType="nt:unstructured" jcr:title="Link" sling:resourceType="granite/ui/components/coral/foundation/form/fieldset"> <items jcr:primaryType="nt:unstructured"> <linkLabel jcr:primaryType="nt:unstructured" sling:resourceType="granite/ui/components/coral/foundation/form/textfield" fieldLabel="Link Label" name="./linkLabel" value="@@@@@@@INiTIAL VALUE GOES HERE@@@@@@@@"/> </items> </fieldset> </items> </field> </navigationLinks>

 

 

 

I hope this helps!

Hamid1350Adobe EmployeeAccepted solution
Adobe Employee
February 12, 2020