Reputation: 1
I want to create Rich Text dialog in AEM 6.5
I have added the RTE plugins and UI settings but still it is not working.
Please see the attached image of the structure of rich text dialog.
Do we need to write some code or class so that rich text dialogs can work. Please help.
Upvotes: 0
Views: 2694
Reputation: 58
The best way to figure out if you have done anything wrong is to copy the richtext from /libs/core/wcm/components/text/v1/text/cq:dialog/content/items/tabs/items/properties/items/columns/items/column/items/text
to your dialog and check if the RTE is appearing or not. If it is, then compare the one you previously created with this one and figure out what is going wrong.
Always the best approach is to check the OOTB fields structure and compare it with your structure to figure out what is going wrong.
Upvotes: 1
Reputation: 1
It is always better to configure dialogs directly with XML instead of doing it in CRXDE. To start with you can look into the 'Text Component' dialog which has RTE in its dialog.
Look into the <text>...</text>
part in the content.xml of the dialog. Hopefully, you will get a better idea.
Upvotes: 0