Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Is there a way to use the jQuery UI dialog events when the filter dialog is opened on Interactive Re

twardAug 22 2016 — edited Aug 23 2016

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.

This post has been answered by Tom Petrus on Aug 23 2016
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 20 2016
Added on Aug 22 2016
10 comments
517 views