Reputation: 21
I am using AEM6.1 to develop components, and I found that in Touch UI edit mode, after I completing a dialog's configuration and generate the html element, I can't click any element in the html element in Touch UI mode.
For example: I can't click the image in the carousel under TouchUI edit mode, but in others modes after I click the image, it will redirect to another.
Upvotes: 1
Views: 1540
Reputation: 31
from your image, It is classicUI - editMode. it's not touchUI. you cannot click on that in editMode. It's wrapped by coralUI in editMode for editing purpose. switch it to disabledMode then you can click
In TouchUI:
disabledMode: http://localhost:4502/content/geometrixx/en.html?wcmmode=disabled
EditMode: http://localhost:4502/editor.html/content/geometrixx/en.html?wcmmode=enabled (left click to configure)
In ClassicUI:
disabledMode: http://localhost:4502/cf#/content/geometrixx/en.html?wcmmode=disabled
EditMode: http://localhost:4502/cf#/content/geometrixx/en.html?wcmmode=enabled (right click to configure if your component doesnot contain Editbar like your image. otherwise you can click on editbar to configure)
Upvotes: 1