how to Remove success message in oracle apex 20.1 20.2 and any lower versions?
step no 1:go to dynamic actions and make one dynamic action on page load like the following figure 01
setTimeout(function(){
$('#APEX_SUCCESS_MESSAGE').fadeOut('fast');
},3000)
and save it
it will remove success message when any submit buttons are clicked
Comments
Post a Comment