in AEM 6.3 touch UI, when adding the following line to include the parsys in the mycomponent.html, the Cut and Delete icons are missing:
<div data-sly-resource="${'par' @ resourceType='wcm/foundation/components/parsys'}"></div>
Does anyone know what's the problem?
Thanks.
Solved! Go to Solution.
Views
Replies
Total Likes
If its not inside a par, that means there is a static include, which implies that it cannot be cut or delete. So the behavior you are seeing seems right to me as it is a more of code than content.
Views
Replies
Total Likes
Kanika Gera any help here?
Views
Replies
Total Likes
Did you mean the cut and delete icons are missing for the component that was dragged in to your parsys?
Views
Replies
Total Likes
Have you dragged and drop any component inside this parsys?
Thanks
Views
Replies
Total Likes
After digging into it. I found because par doesn't exist as a node, that's why the cut and delete icons are missing. If I manually create the par node first, then both icons are back. Don't know why.
Looks like the work around is when loading the component, the par node has to be created if it doesn't exist.
Views
Replies
Total Likes
If its not inside a par, that means there is a static include, which implies that it cannot be cut or delete. So the behavior you are seeing seems right to me as it is a more of code than content.
Views
Replies
Total Likes
A component includes an open parsys to allow the author to drag and drop some components in it. Since the par defined in the open parsys doesn't exist, once you drag the component into the page, you can't delete it because of no delete icon.
Views
Replies
Total Likes
When you say drag and drop in a page, you still mean parsys, correct? Dont know what you mean by "Since the par defined in the open parsys doesn't exist"
If dropped in parsys, the node of the component would always be under "par"(parsys) node..
Views
Replies
Total Likes
let's say I have a component footer. Inside the footer.html, I have a line as below to have an open parsys to allow author to drag other component into it.
<div data-sly-resource="${'par' @ resourceType='wcm/foundation/components/parsys'}"></div>
Once I drag the footer into the page, the footer have no cut and delete icons. So you can't delete footer. If I remove above line in the footer.html, then the delete icon is appeared.
I find if I manually create the node par under the footer, then the delete icon is presented,
Views
Replies
Total Likes
That sounds strange.. Can you share content package with this issue?
Views
Replies
Total Likes
Look like it only happens in the editable template. Drag the same component into a page, works fine.
Just past below lines into an existing component
<header>
<div style="background-color:#df8600;"></div>
<div>
<div>
<div>
<div>
<h1>
<a href="#">Hello</a>
</h1>
</div>
</div>
</div>
</div>
</header>
<div class="col-sm-7">
<div data-sly-resource="${'par' @ resourceType='wcm/foundation/components/parsys'}"></div>
</div>
then drag this components into an editable template, when you bring up the template page, in the middle of the component, it should have an "Drag components here" open parsys, but you don't see the cut and delete icon for this component.
if you drag the same component into a page, the cut and delete icons are presented.
Not sure if it is a bug for editable template?
Thanks.
Views
Replies
Total Likes
Views
Likes
Replies