Dynamic select inside multifield | Community
Skip to main content
imrank18551706
Level 2
April 13, 2018

Dynamic select inside multifield

  • April 13, 2018
  • 2 replies
  • 9484 views

Hi,

On country selection, I am populating states through ajax call in select inside multifield. State option is working fine, when we have only one section (or single state in select) inside multifield.

Please find below screenshot for the same.

Issue:

1. Clicking on add new to add second or more state.

2. The click event on select will not work and also will not be able to see the options options too. 

Please found below image for the same.

Below is the code snippet to get country from data source, and on selection of country we are getting states through ajax call.

(function($, $document) {

    "use strict";

     var STATE = "./stateSelect";

     var SELECTBOX = './countrySelect';

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

          $("[name='"+SELECTBOX+"']").next().children().click(function() {

               getStates($(this).attr('data-value'));

          });

          var stateList = [];

          function getStates(countrySelect){

                 var url = "/bin/services/optus/getStateServlet."+countrySelect+".json";

                 $.getJSON(url).done(function(data) {

                     stateList = data;             

                     addStateToSelectBox(stateList.countries)

                 });

          }     

         function addStateToSelectBox( dataSet) {

               var state = new CUI.Select({

                   element: $("[name='" + STATE +"']").closest(".coral-Select")

               });

                _.each(dataSet, function(key, value) {

                     $("<option>").appendTo(state._nativeSelect).val(key.state_name).html(key.state_name);

                });

        }     

});

})($, $(document));

Thanks

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

2 replies

smacdonald2008
Level 10
April 13, 2018

What AEM version are you using? Are you using the lastest Multifield - which is granite/coral.

imrank18551706
Level 2
April 13, 2018

I am using AEM 6.1

with multifield...granite/ui/components/foundation/form/multifield

Vijayalakshmi_S
Level 10
April 16, 2018

HI,

Since click on "Add field" is another event from the user end, perhaps it loses click event on Country select dropdown and hence getStates function call.

Below link has an almost similar implementation to that of yours with a difference being below listed, see if that helps/agreed in your project

  • textfield instead of select inside multifield
  • "add field" of multifield is triggered from the code for how many ever state we have for the country selected.
  • state value is populated in the textfield inside multfield.

Experiencing Adobe Experience Manager - Day CQ: AEM 61 - TouchUI Add Items to Multifield based on Select (Drop Down) val…


Adding to the above, it is suggested to follow Coral UI3 resources only for dialog fields, only the implementation approach can be referred from the link shared.

Ratna_Kumar
Level 10
April 13, 2018

Hi Imran,

In order to populate the select dropdown, you can use Datasource object than JS

Check this article for your reference.: Adobe Experience Manager Help | Using an WCMUsePojo class to populate an Experience Manager Touch UI Select Field

Hope this helps!!

Thanks,

Ratna.

imrank18551706
Level 2
April 13, 2018

Hi,

I am using datasource only to render countries, but not able to render states in select with multifield.

Thanks