How can we create a multifield using a sightly with a single text field form the html file.?
Views
Replies
Total Likes
Hi,
Below is the example of multi field component in AEM 6.4 using sightly
Views
Replies
Total Likes
Hi , Is there any alternative way, writing some javascript code and fetching the values?
Views
Replies
Total Likes
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
>
Views
Replies
Total Likes
Hi smacdonald2008, I tried using the below sightly code for my multifield component.
where linkText is my multifiled node name. wont't this be the correct approach?
Views
Replies
Total Likes
<sly data-sly-list="${resource.children}">
Views
Replies
Total Likes
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,
Views
Replies
Total Likes
please check this multifield article.
Creating a Tab layout component for Adobe Experience Manager
Also use coral ui multifield in replace of that.
Views
Likes
Replies
Views
Likes
Replies