Repeater.onitemremoved event

Raised after an item has been removed from the Repeater control's data source and after the corresponding Document Object Model (DOM) element has been removed.

Syntax

<div 
    data-win-control="WinJS.UI.Repeater" 
    data-win-options="{onitemremoved : handler}">
</div>
function handler(eventInfo) { /* Your code */ }
 
// addEventListener syntax
repeater.addEventListener("itemremoved", handler);
repeater.removeEventListener("itemremoved", handler);

Event information

Synchronous No
Bubbles Yes
Cancelable Yes

 

Event handler parameters

eventInfo

Type: CustomEvent**

An object that contains information about the event. The detail property of this object contains the following sub-properties:

detail.affectedElement

The DOM element that was removed.

detail.index

The index of the item that was removed.

detail.item

The corresponding data item that was removed.

detail.setPromise

A Promise that completes after the removal animations complete.

Requirements

Minimum WinJS version

WinJS 2.0

Namespace

WinJS.UI

See also

Repeater