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;
}
Version 6.1
Copyright © 2016, Rogue Wave Software, Inc. All Rights Reserved.