VirtualizedDataSource.addEventListener method

Registers an event handler for the specified event.

Syntax

virtualizedDataSource.addEventListener(type, listener, useCapture);

Parameters

  • type
    Type: String

    The type (name) of the event to handle. See the VirtualizedDataSource object page for a list of events. Note that you drop the "on" when specifying the event type for the addEventListener method. For example, instead of specifying "onstatuschanged", you specify "statuschanged".

  • listener
    Type: Function

    The event handler function to associate with the event.

  • useCapture
    Type: Boolean

    Set to true to register the event handler for the capturing phase; otherwise, set to false to register the event handler for the bubbling phase.

Return value

This method does not return a value.

Requirements

Minimum WinJS version

WinJS 3.0

Namespace

WinJS.UI

See also

VirtualizedDataSource