List.dataSource property

Gets the IListDataSource for the list. The only purpose of this property is to adapt a List to the data model that is used by ListView and FlipView.

Syntax

var source = list.dataSource;

Property value

Type: IListDataSource**

The data source for the list.

Examples

The following code shows how to assign the data source of a list to a ListView control.

var list = new WinJS.Binding.List();
var listView = document.querySelector(".win-listview");
listView.winControl.itemDataSource = list.dataSource;

Requirements

Minimum WinJS version

WinJS 1.0

Namespace

WinJS.Binding

See also

List