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!

Fade out success message [SOLVED]

MegamanXJul 17 2019 — edited Jul 18 2019

Hi,

I'm trying to hide the success messages in a page but it's not working.

(Works for messages on page load and normal ones but not the ones from Process success)

I'm following this guide:

https://apex.oracle.com/pls/apex/f?p=100309:33:

apex.message.setThemeHooks({

  beforeShow: function(pMsgType, pElement$){

  setTimeout(function() {

  $('.t-Alert').fadeOut('slow');

  }, 3000); 

  }

});

I put this code on the page settings > Javascript > Execute when page loads.

Apex version is 19.1

Thanks in advance.

EDIT:

Also I'm not using the default theme. I modified the colors and rounded the fields and buttons.

This post has been answered by MegamanX on Jul 18 2019
Jump to Answer
Comments
Post Details
Added on Jul 17 2019
9 comments
4,542 views