P
Hi,
I've using iParsys in my project. On parent page when I'm dragging component in iParsys, the DOM is like this.
In above snapshot, an extra is coming which is coming below dragged component section. But, in case of child pages, when we see DOM, the div section is coming at the top of the dragged component which is creating extra space.
I need to remove this extra <div class="new section"> or it would be okay if it comes to the dragged component for child pages instead of coming at the top of it.
Thanks,
Himanshu
Solved! Go to Solution.
Did you check this Technical Brainstorming : Removing component's auto generated div in AEM
// [Not tested]
For removing these extra divs you have to include these lines of code in your component level. These lines are-
if(WCMMode.fromRequest(request) != WCMMode.EDIT){
IncludeOptions.getOptions(request,true).setDecorationTagName("");
}
We have to import these two statement for WCMMode and includeOptions-
@page import="com.day.cq.wcm.api.WCMMode"
@page import="com.day.cq.wcm.api.components.IncludeOptions"
And Worth reading:-https://aemcorner.com/aem-how-to-remove-div-wrapper-from-component/
Views
Replies
Total Likes
See if this community helps you -- https://aemcorner.com/aem-how-to-remove-div-wrapper-from-component/
For components other than parsys , One suggestion while using the above solutions is to use them only in publish mode , since the additional divs enable the authoring of the component. If these divs are not present around the component in edit mode , it will not be author-able.
Views
Replies
Total Likes
Also - why do you want to remove them anyhow?
Views
Replies
Total Likes
Veena, you mean to say in publish instance or when viewed page as published, this empty div won't appear?
Views
Replies
Total Likes
You do not want to remove that DIV from Author as components will not be editable.
Views
Replies
Total Likes
Both are basically same. ANy code intended to run only in publish should be written in a conditional statement where you check the wcmmode as publish.
Views
Replies
Total Likes
Right. But, for iParsys even when I'm seeing the page in publish mode or "view as published", I can see the empty div there. The snapshot I've attached is from a page viewed as published.
Views
Replies
Total Likes
Did you check this Technical Brainstorming : Removing component's auto generated div in AEM
// [Not tested]
For removing these extra divs you have to include these lines of code in your component level. These lines are-
if(WCMMode.fromRequest(request) != WCMMode.EDIT){
IncludeOptions.getOptions(request,true).setDecorationTagName("");
}
We have to import these two statement for WCMMode and includeOptions-
@page import="com.day.cq.wcm.api.WCMMode"
@page import="com.day.cq.wcm.api.components.IncludeOptions"
And Worth reading:-https://aemcorner.com/aem-how-to-remove-div-wrapper-from-component/
Views
Replies
Total Likes
Please elaborate on where to include these two lines when the components are developed using HTL.
Iparsys is included in the page component to hold the footer component. The extra div is coming up in the end of the page and it appears on Publish environment as well.
Awaiting your response.
Views
Likes
Replies