Hi Guys,
I was using the Adobe AEM 6.4 and I'm including a component using the code below.
<sly data-sly-resource="${'menu_vertical' @ resourceType='ATT/components/content/menu_vertical',decorationTagName='div',cssClassName='att-componentheight'}"/>
But I put editConfigListener on the component to refresh the page when editing the component. But it doesn't work.
<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0"
jcr:primaryType="cq:EditConfig">
<cq:listeners
jcr:primaryType="cq:EditListenersConfig"
afteredit="REFRESH_PAGE"/>
</jcr:root>
Any suggestion?
Thanks a lot.
Solved! Go to Solution.
Hi,
It actually refresh the inter frame doesn't do parent reload.
you can force refresh by adding below script of category cq.authoring.dialog
(function ($, $document) {
"use strict";
$document.on("dialog-success", function() {
window.location.reload();
})($, $(document));
Hi,
It actually refresh the inter frame doesn't do parent reload.
you can force refresh by adding below script of category cq.authoring.dialog
(function ($, $document) {
"use strict";
$document.on("dialog-success", function() {
window.location.reload();
})($, $(document));
Thanks, arunpatidar26
Views
Replies
Total Likes
Views
Likes
Replies