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

Set default values for fields inside multifield in AEM Touch UI

  • February 11, 2020
  • 3 replies
  • 5953 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

Hamid1350Accepted solution
Employee
February 12, 2020
BrianKasingli
New Participant
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!

santhosh_kumar6
New Participant
February 11, 2020

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