We have a requirement to customize the tooltip of Dialog Done & Cancel Buttons
We tried to overlay the file \apps\cq\gui\components\authoring\dialog\dialog.jsp and customize the title property as follows but that did not work.
Solved! Go to Solution.
Views
Replies
Total Likes
I tried by overlaying the /apps/cq/gui/components/authoring/dialog/dialog.jsp and modified line#233 as shown below and it worked.
<button is="coral-button" variant="minimal" class="cq-dialog-header-action cq-dialog-submit" title="<%= i18n.get("Done") %>">Testing</button>
Where you want to see this customization?
Component Dialogs for example Title Component etc.
I tried by overlaying the /apps/cq/gui/components/authoring/dialog/dialog.jsp and modified line#233 as shown below and it worked.
<button is="coral-button" variant="minimal" class="cq-dialog-header-action cq-dialog-submit" title="<%= i18n.get("Done") %>">Testing</button>