notification嗨,,, 成功创建ORacle APEX格式的记录后,将显示绿色的通知。无论如何,在10到20秒后会自动关闭该通知吗?下面的示例图片。
答案 0 :(得分:1)
转到“全局”页面(第0页)
在页面加载时设置动态操作
将其设置为执行Javascript:
apex.message.setThemeHooks({
beforeShow: function(pMsgType, pElement$){
if (pMsgType=='success'){
setTimeout(function() {
$('.t-Alert').fadeOut('slow');
}, 5000);
}
}
});
我将其设置为5秒,即代码中的5000,但是您可以随意设置。