Hi All,
I have searched how to get child resource from "resource" object in sightly, but haven`t found any answer.
I know that I could read property of child node, but I include parsys in my component and want to list children of parsys.
As a workaround I do
<div data-sly-list.parsys="${resource.listChildren}" data-sly-unwrap> <ul data-sly-list.item="${parsys.listChildren}"> ... process item ... </ul> </div>
how to have sth like:
${resource.parsys.listChildren}
Thanks for your help 🙂