Window Javascript Events
Description
Javascript events available for a Window container.
Discussion
These events provide hooks to execute custom JavaScript when a user interacts with the Window or when the Window undergoes lifecycle changes, such as opening or closing.
- Name
- Description
- onBeforeHide
Specify the Javascript code to execute before the window is hidden.
- onBeforeRemove
Fires before a tab pane is closed. If event handler returns true, user can close tab. If event handler returns false, user cannot close tab.
- onBeforeShow
Specify the Javascript code to execute before the window is shown.
- onFocus
Specify the Javascript code to execute when the window gets focus.
- onHide
Specify the Javascript code to execute when the window is hidden.
- onInitialize
Specify the Javascript code to execute the first time the window is shown.
- onMove
Specify the Javascript code to execute when the window is moved.
- onResize
Specify the Javascript code to execute when the window is resized.
- onShow
Specify the Javascript code to execute when the window is shown.