ItemContainer.oninvoked event

Raised when the item is invoked. (You can use the tapBehavior property to specify whether taps and clicks invoke the item.)

Syntax

<div 
    data-win-control="WinJS.UI.ItemContainer" 
    data-win-options="{oninvoked : handler}">
</div>
function handler(eventInfo) { /* Your code */ }
 
// addEventListener syntax
itemContainer.addEventListener("invoked", handler);
itemContainer.removeEventListener("invoked", handler);

Event information

Synchronous No
Bubbles Yes
Cancelable No

 

Event handler parameters

  • eventInfo
    Type: CustomEvent**

    An object that contains information about the event.

Requirements

Minimum WinJS version

WinJS 3.0

Namespace

WinJS.UI

See also

ItemContainer

tapBehavior