Can I include xf directly on the AEM component through Sightly?
For ex:
this is existing code:
<sly data-sly-test=${currentStyle.myFlag}>
data-sly-resource="${ @path='myContent', resourceType='/apps/my-common/components/content/mycomponent'}"
data-sly-unwrap="${!wcmmode.edit}"></div>
</sly>
But now I have created an xf for mycomponent and now I want to directly use it on the AEM component.
Like:
<sly data-sly-test=${currentStyle.myFlag}>
data-sly-resource="${ @path='myXf', resourceType='content/experience-fragments/sprint/shared/mycomponentXF'}"
data-sly-unwrap="${!wcmmode.edit}"></div>
</sly>
Can anyone suggest is this possible or a good approach?
Solved! Go to Solution.
Hard Coded Example
The first example uses sightly to reference an experience fragment, /content/experience-fragments/we-retail/equipment, and the required variation, master. This will only work when the path includes the experience fragment variation path. The value here is hard coded.
<sly data-sly-resource="${@path='/content/experience-fragments/we-retail/equipment/master',
selectors='content', wcmmode='disabled'}"></sly>
Dynamic Example
In the second example, we can see that our component adapts to the com.mysite.models.component.MyCustomComponent, Sling Model backend, and then it exposes the experience fragment in the exPath property. The value returned from the exPath is ‘/content/experience-fragments/we-retail/equipment/master’.
<sly data-sly-use.cmp="com.mysite.models.component.MyCustomComponent"></sly>
<sly data-sly-resource="${@path=cmp.exPath,
selectors='content', wcmmode='disabled'}"></sly>
Hi @Abhishekty ,
Try this,
<sly data-sly-resource="${@path='content/experience-fragments/sprint/shared/mycomponentXF', selectors='content', wcmmode='disabled'}"></sly>
Hope that helps!
Regards,
Santosh
Hard Coded Example
The first example uses sightly to reference an experience fragment, /content/experience-fragments/we-retail/equipment, and the required variation, master. This will only work when the path includes the experience fragment variation path. The value here is hard coded.
<sly data-sly-resource="${@path='/content/experience-fragments/we-retail/equipment/master',
selectors='content', wcmmode='disabled'}"></sly>
Dynamic Example
In the second example, we can see that our component adapts to the com.mysite.models.component.MyCustomComponent, Sling Model backend, and then it exposes the experience fragment in the exPath property. The value returned from the exPath is ‘/content/experience-fragments/we-retail/equipment/master’.
<sly data-sly-use.cmp="com.mysite.models.component.MyCustomComponent"></sly>
<sly data-sly-resource="${@path=cmp.exPath,
selectors='content', wcmmode='disabled'}"></sly>
Views
Likes
Replies