Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

multifield component

Avatar

Level 3

How can we create a multifield using a sightly with a single text field form the html file.?

7 Replies

Avatar

Level 3

Hi , Is there any alternative way, writing some javascript code and fetching the values?

Avatar

Level 10

Best way is to use SLing Model and inject the MF into the model and read the values in HTL.

Why would you want to hack this by using Javascript when HTL is very easy to render the values entered into the Multifield?

<div

    data-sly-use.multiItems="aem.community.mf.core.models.Multifield">

    <div data-sly-list.head="${multiItems.products.listChildren}">

        <div style="height:250px;"><img src=${head.pathbr} height=200 width=270 style="padding:4px"/><h2>${head.product}</h2>

                             <p>${head.desc}</p>

                             </div>

                             <hr>

   </div>

</div>

Avatar

Level 3

Hi smacdonald2008, I tried using the below sightly code for my multifield component.         

  • ${item.linkText}

    where linkText is my multifiled node name. wont't this be the correct approach?

Avatar

Level 3

<sly                        data-sly-list="${resource.children}">         

  • ${item.linkText}

Avatar

Level 10

Follow that article referenced above and you will see exactly how it works.

For a MF - you need to inject the MF node into the SLing MODEL (as shown in the article) - if you do not - it will not work. I recommend following it EXACTLY step by step - and you will see how it works,

Avatar

Community Advisor

please check this multifield article.

Creating a Tab layout component for Adobe Experience Manager

Also use coral ui multifield in replace of that.