Nested Multifield Loop not getting executed | Adobe Higher Education
Skip to main content
Level 6
May 21, 2021
해결됨

Nested Multifield Loop not getting executed

  • May 21, 2021
  • 2 답변들
  • 1759 조회

I have a dialog where there is nested multifield. In the nested multifield, there's dropdown.

-----

Details of the dialog:

Multifield

  Container (name = Parent)

     Multifield

          Container (name = Child)

              dropdown (class = cq-dialog-dropdown-showhide-multi)

------

Javascript code for looping :

(function ($, document, ns) {

   const A = function () {

         console.log("In A");

      $(this).find("[data-granite-coral-multifield-name='./Child'] .coral3-Multifield-item").each(function( index ) {
         console.log("In Loop");

      })

  };

  $(document).on("change", ".cq-dialog-dropdown-showhide-multi", function() {
      A();
  });

  $(document).on("dialog-ready", function() {
      A();
  });

})(Granite.$, document, Granite.author);

-------

Function A gets called once the dialog content has loaded (on opening the dialog).

Function A gets called when there is a change in dropdown value.

-------

Suppose if my parent multifield has 1 item and its child multifield has 2 items:

Func A gets called when the dialog is opened and "In A In Loop In Loop" gets printed in console. Now if I change the dropdown value, "In A" gets printed in console. The loop doesn't get executed even though the number of child items are still the same.

Not sure what exactly may be the issue. Please advice.

이 주제는 답변이 닫혔습니다.
최고의 답변: Shaheena_Sheikh
Corrected the code line as below and the loop will start working fine:
$(this).find("[data-granite-coral-multifield-name$='Child'] .coral3-Multifield-item").each(function( index ) {

2 답변

Asutosh_Jena_
Community Advisor
Community Advisor
May 22, 2021

Hi @shaheena_sheikh 

 

You can use the Model class to achieve the functionality than doing all these iterations in JS. Why are you not using the Sling Models?

 

 

Level 6
May 23, 2021
I need to apply validation everytime the drop-down field is being touched while authoring the component. Will that be possible using model class??
Shaheena_Sheikh작성자답변
Level 6
May 24, 2021
Corrected the code line as below and the loop will start working fine:
$(this).find("[data-granite-coral-multifield-name$='Child'] .coral3-Multifield-item").each(function( index ) {
kautuk_sahni
Community Manager
Community Manager
May 24, 2021
Thank you for sharing answer with AEM community. This would help in posterity.
Kautuk Sahni