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 5.7
Copyright © 2013, Rogue Wave Software, Inc. All Rights Reserved.