Sightly how to get multivalued properties
Hi,
I am new to Sightly world and i can't find the way to retrieve the values from mutlivalued string with a multifield.
<ul data-sly-list.child="${properties.items}"> // Doing this the iteration definitely happens.
<li>Child Item: ${properties.heading}</li> // This prints both the keys together.
OR <li> Child Item: <li>Child Item: ${child.heading}</li> //Dosen't Print anything. Neither childList does.
</ul>
// items the key of the element which is stored like below
Any help is appreciated. It can't be complex but nowhere in the documentation anything is mentioned about properties. They all have listed page iteration example.