Touch Ui Dialog Box is not persisting content | Community
Skip to main content
October 6, 2017
Solved

Touch Ui Dialog Box is not persisting content

  • October 6, 2017
  • 3 replies
  • 1698 views

I have Included  button component(use any component) in template level using sightly.

like

body.html

      <div data-sly-resource="${'button' @ resourceType='TestProject/components/content/button'}"></div>

Created new page of this template. Open the page in touch Ui. i am able to see the "button" component on page.

open the dialog box in touch ui. fill and submit the dialog box. The dialog box content is not persisted(button node is not created)

But if i drag and drop this "Button" component in parsys. i am able to persist the dialog content successfully.

Is anyone know how to resolve this touch ui dialog box persistence issue.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by hariprasadm4102

You are missing path attribute. Please use below syntax.

<div data-sly-resource="${@ path='button', resourceType='TestProject/components/content/button'}"></div>

3 replies

Szalam
Level 2
October 6, 2017

What Adobe software are you using? You've posted in the Forum comments forum (which is for issues with these forums themselves). If you let us know what you're working with, a moderator can move your post to the right forum to get help.

sushant84Author
October 9, 2017

I am using AEM 6.3

hariprasadm4102Accepted solution
October 10, 2017

You are missing path attribute. Please use below syntax.

<div data-sly-resource="${@ path='button', resourceType='TestProject/components/content/button'}"></div>