Flyout.onaftershow event
Occurs immediately after the Flyout is displayed.
Learn about events with Quickstart: adding HTML controls and handling events.
Syntax
function handler(eventInfo) { /* Your code */ }
// addEventListener syntax
flyout.addEventListener("aftershow", handler);
flyout.removeEventListener("aftershow", handler);
- or -
flyout.onaftershow = handler;
Event information
Synchronous | No |
Bubbles | Yes |
Cancelable | No |
Event handler parameters
eventInfo
Type: Event**An object that contains information about the event.
Requirements
Minimum WinJS version |
WinJS 1.0 |
Namespace |
WinJS.UI |
See also
Designers
Guidelines for flyouts
Guidelines for context menus