Morning Mark,
I played around a bit, but I think that alert div on the browse is largely unused these days. It's mostly used by the page-mode-form.
That said, it's good to have a notification div, so I've added a bit of support for that back in.
p_web.showInfo('Message goes here')
you can also hide it with
p_web.hideInfo()
>> hiding the div (and clearing the text) after some acceptable point in time
I'm not sure it ever disappeared on a timer - I guess it disappeared when the error was corrected. However having it timeout is cool, so you can do
p_web.showInfo('Message goes here',timeout)
Where timeout is a long, normal clarion hundreths of a second, after which the message will fade away....
Lastly it defaults to the alert_div, but you could create any div you like on the page and use the same function;
p_web.showInfo('Message goes here',timeout,'mark_div')
and then if necessary
p_web.hideInfo('mark_div')
This is all in 8.48
Cheers
Bruce