acs-commons-nested="NODE_STORE" not saving to nodes | Community
Skip to main content
Level 2
December 12, 2018
Solved

acs-commons-nested="NODE_STORE" not saving to nodes

  • December 12, 2018
  • 2 replies
  • 3149 views

AEM 6.3 with service pack 3. After upgrading our dialog won't save data as before. We access data entered for each slide added to the component by the 'iItems' Node it used to store in. The slides are now being stored in an array under the components properties instead.

Here is the dialog and example of how its being stored.

<pages
   jcr:primaryType="nt:unstructured"
   sling:resourceType="granite/ui/components/coral/foundation/form/multifield"
   class="full-width"
   fieldLabel="Carousel Slide Info">
  
  <field
   jcr:primaryType="nt:unstructured"
   sling:resourceType="granite/ui/components/foundation/form/fieldset"
   acs-commons-nested="NODE_STORE"
   name="./iItems">

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

Below file in acs-commons has example of cq:dialog to store as nodes, we can put console logs/alerts to debug the flow

/apps/acs-commons/touchui-widgets/composite-multifield/source/touchui-composite-multifield-nodestore.js

2 replies

Ravi_Pampana
Community Advisor
Ravi_PampanaCommunity AdvisorAccepted solution
Community Advisor
December 12, 2018

Below file in acs-commons has example of cq:dialog to store as nodes, we can put console logs/alerts to debug the flow

/apps/acs-commons/touchui-widgets/composite-multifield/source/touchui-composite-multifield-nodestore.js

Level 2
December 12, 2018

Thanks, that helped me figure out I just needed to update my acs package