onAfterTransitionOut - After Transition Out Script
Activates JavaScript code after the transition out of this Application Page control, when it is no longer visible.
Category
eventsSyntax
<xp:eventHandler event="onAfterTransitionOut" attributes>content</xp:eventHandler>
Usage
In Design mode, click All Properties and look for onAfterTransitionOut in the events section.Note: This event is new
for Release 9.0.1
This is one of the events that occurs when transitioning between Application Page controls. See the onBeforeTransitionIn event, for a discussion of transitioning events.
Examples
<xe:appPage id="allDocuments" pageName="allDocuments">
<xp:eventHandler event="onAfterTransitionOut" submit="false">
<xe:this.script><![CDATA[console.log('onAfterTransitionOut allDocuments');]]></xe:this.script>
</xp:eventHandler>
</xe:appPage>