The onHide Property
The onHide property is similar to the onShow property except that the specified function is called when the container is hidden. For example:
function WhenPanelHides(theContainer)
{
writeln("Hi, I am " + theContainer.name + ", see you later.");
}
 
function OnLoad(theContainer)
{
theContainer.onHide = WhenPanelHides;
}
Published date: 05/24/2022
Last modified date: 02/24/2022