Is there a way to use the jQuery UI dialog events when the filter dialog is opened on Interactive Reports?
I'm using Apex 5.0.4.00.12.
I tested the following and they didn't seem to work:
$( ".a-IRR-dialog" ).on( "dialogopen", function( event, ui ) {alert('open');} );
$( ".a-IRR-dialog" ).on( "dialogbeforeclose", function( event, ui ) {alert('closing');} );
$( ".a-IRR-dialog" ).on( "dialogcreate", function( event, ui ) {alert('DialogCreated');} );
$( ".a-IRR-dialog" ).on( "dialogfocus", function( event, ui ) {alert('gotFocus');} );
$( ".a-IRR-dialog" ).on( "dialogdragstart", function( event, ui ) {alert('Drag Start');} );
$( ".a-IRR-dialog" ).on( "dialogdragstop", function( event, ui ) {alert('Drag Stop');} );
$( ".a-IRR-dialog" ).on( "dialogresize", function( event, ui ) {alert('Dialog Resize');} );
$( ".a-IRR-dialog" ).on( "dialogresizestart", function( event, ui ) {alert('Dialog Resize Start');} );
$( ".a-IRR-dialog" ).on( "dialogresizestop", function( event, ui ) {alert('Dialog Resize Stop');} );
Didn't know if I was missing something obvious or what...
Thanks.