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.?
Also what is the order of sequence AEM loads the $document.on("dialog-ready", function() { .. } when compares with $(document).on("foundation-contentloaded", function (e) { .. } .?
Am trying to do a show hide for a multifield inside a dialog for a select change. Where as it works fine for selection change but on dialog open i have to get back the original authored content selections and show hide the related multifield widgets.