Am trying to use $document.on("dialog-ready", function() { .. }
for touch UI dialog customization. Where as i can see the dialog-ready event fires before the dialog content is fully loaded which gives me a unavailability of tags for traversal of dialog html.
- Is there any event listener that i can use for triggering a call after my dialog is fully loaded with all widgets and its values.?
- Is there any documentation link where i can find these event listeners apart from Adobe Experience Manager Help | Using Event Handlers in Adobe Experience Manager Touch UI Components .?
- Also what is the order of sequence AEM loads
$document.on("dialog-ready", function() { .. }
when compares with$(document).on("foundation-contentloaded", function (e) { .. }
.
?
<coral-dialog-content>
, I believe here is the implementation -/libs/cq/gui/components/authoring/editors/clientlibs/core/js/DialogFrame.js
– awd