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);