Diese Konversation wurde aufgrund von Inaktivität geschlossen. Bitte erstellen Sie einen neuen Post.
Level 1
Level 2
Melden Sie sich an, um alle Badges zu sehen
Diese Konversation wurde aufgrund von Inaktivität geschlossen. Bitte erstellen Sie einen neuen Post.
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
Gelöst! Gehe zu Lösung.
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/
Zugriffe
Antworten
Likes gesamt
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.
Zugriffe
Antworten
Likes gesamt
Also - why do you want to remove them anyhow?
Zugriffe
Antworten
Likes gesamt
Veena, you mean to say in publish instance or when viewed page as published, this empty div won't appear?
Zugriffe
Antworten
Likes gesamt
You do not want to remove that DIV from Author as components will not be editable.
Zugriffe
Antworten
Likes gesamt
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.
Zugriffe
Antworten
Likes gesamt
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.
Zugriffe
Antworten
Likes gesamt
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/
Zugriffe
Antworten
Likes gesamt
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.
Zugriffe
Likes
Antworten
Zugriffe
Likes
Antworten
Zugriffe
Likes
Antworten