Issue with Parsys in a Sightly component
Hi,
In AEM5.6, I was able to create a component which has a child parsys like this:
<%@include file="/libs/foundation/global.jsp"%>
<div class="group">
<cq:include path="question_list" resourceType="foundation/components/parsys" />
</div>
I've tried to do the same in Sightly like this:
<div>
<section class="question_list"
data-sly-resource="${'question_list' @ resourceType='wcm/foundation/components/parsys'}">
</section>
</div>
This lets me drag my component onto the page. However, in Sightly, when I drag a component into my question_list component, it actually gets added to the parent parsys, not to the question_list
Am I doing something wrong, or is this an issue with Sightly and/or the new Touch UI Parsys (I tried the foundation parsys also with the same result), but the parent is a Touch UI Parsys.
Thanks!