Reputation: 374
Starting out with AEM by using CRXDE, and making a structure component for a header hero component that will show a title and subtitle.
I wanted to add a cq:dialog
by just copying the libs/wcm/foundation/components/title/cq:dialog
component, and pasting it inside the hero component. There are two values: jcr:title
and jcr:subtitle
. When it comes to those values, they do display if I manually add them to my page from the contents
directory.
The problem that I am facing is that the dialog is not showing at all when I hover over the hero area of the website from the editor.html
view.
Is there something I am doing wrong?
Upvotes: 0
Views: 1605
Reputation: 3951
Do not use jcr:subtitle
. This property name appears to be outdated/invalid and will most likely throw an exception related to the node type definition. Simply use subtitle
and you should be fine.
Upvotes: 2