简体   繁体   中英

Oracle APEX Close Modal Page with Javascript After 3 Seconds

I use in Dynamic Action Javascript to close my current modal page like this:

apex.navigation.dialog.close(true)

Is it possible to close my current modal page after 3 seconds? Because i want first to show a notification like this: show_notification('Please Do Something');

I found it!!

setTimeout(function() {apex.navigation.dialog.close(true)}, 3000);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM