view

Get the data view after a read operation. A data view is a JavaScript array containing a subset of the underlying data after applying filter, sort, skip and take operations. This property is initially undefined and is set after a read().

var dataSource = new shield.DataSource({
    remote: {
        read: {
            url: "/content/xml/movies.xml"
        }
    },
    skip: 5,
    take: 5
});

console.log(dataSource.view);      //undefined
dataSource.read(function () {
    console.log(dataSource.view);  //view contains the second 5 items
});