Hi all,
I have a jsp page including a component as:
<cq:include path="ctaList" resourceType="mysite/components/ctaList" />
I converted it into this:
<sly data-sly-resource="${'ctaList' @ resourceType='mysite/components/htl/ctaList'}"/>
I can see the sling:resourceType of "mysite/components/ctaList" under /crx/de when using the jsp code. But I don't see the sling:resourceType anymore when using the Sightly code. How can I achieve the equivalent result as the jsp code in Sightly?
Thanks a lot!
-kt