List.onreload event

1 out of 1 rated this helpful - Rate this topic

The list has been refreshed. Any references to items in the list may be incorrect

Syntax


function handler(eventInfo) { /* Your code */ }
 
// addEventListener syntax
list.addEventListener("reload", handler);
list.removeEventListener("reload", handler);
 
- or -

list.onreload = handler;


Event handler parameters

eventInfo

Type: CustomEvent

An object that contains information about the event. The detail property of this object is null.

Requirements

Namespace

WinJS.Binding

Library

Base.js

See also

List

 

 

Build date: 12/5/2012

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.