css - content added to parsys displays outside of containing html. How can I get it to show inside it? -
i'm trying create adobe cq component , include parsys element users can drag other components into. however, when drag items parsys component display outside of html tags wrapped around include. doing wrong?
html in component jsp
<div class="div-one"> div 1 </div> <div class="div-two"> <cq:include path="par" resourcetype="foundation/components/parsys" /> </div>
content.xml component
<?xml version="1.0" encoding="utf-8"?> <jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" jcr:description="" jcr:primarytype="cq:component" jcr:title="title" sling:resourcesupertype="foundation/components/parbase" allowedparents="[*/parsys]" componentgroup="my group" cq:htmltag=""/>
how html rendered in browser after think dragged component div-two
<div class="div-one"> div 1 </div> <div class="div-two"> <cq:include path="par" resourcetype="foundation/components/parsys"> </cq:include></div> <div id="mycomponent" class="row"> </div>
cq:include
tag library element should not appear in rendered html.
make sure include global.jsp @ top of each jsp file when using cq taglib:
<%@ include file="/libs/foundation/global.jsp" %>
for more on cq taglib see this doc.
Comments
Post a Comment