This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var listItems; // The list of retrieved items. | |
var query; // For paging, reuse the same query object. | |
var targetList; // The list from which to retrieve items. | |
var clientContext; | |
function runCode() { | |
clientContext = new SP.ClientContext(); | |
targetList = clientContext.get_web().get_lists().getByTitle('Announcements'); | |
query = new SP.CamlQuery(); | |
//Specifying the RowLimit will determine how many items will be fetched in one call to the server. | |
query.set_viewXml("<View><ViewFields><FieldRef Name='Title'/></ViewFields><RowLimit>2</RowLimit></View>"); | |
listItems = targetList.getItems(query); | |
clientContext.load(listItems); | |
clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed)); | |
} | |
function onQuerySucceeded() { | |
var message = "Titles, two at a time:\n"; | |
var listEnumerator = listItems.getEnumerator(); | |
while (listEnumerator.moveNext()) { | |
message += "\nTitle=" + listEnumerator.get_current().get_item("Title") | |
} | |
alert(message); | |
//Gets the id of the last element from the returned collection along with the query. | |
var position = listItems.get_listItemCollectionPosition(); | |
//Position will be null if all the items in the collection are fetched and there are no more items to be fetched. | |
if (position != null) { | |
//If more items are to be fetched, make a second call to the server and fetch the next group of items. | |
query.set_listItemCollectionPosition(position); | |
listItems = targetList.getItems(query); | |
clientContext.load(listItems); | |
//Call the same function recursively until all the items in the current criteria are fetched. | |
clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed)); | |
} | |
} | |
function onQueryFailed(sender, args) { | |
alert('Request failed. \nError: ' + args.get_message() + '\nStackTrace: ' + args.get_stackTrace()); | |
} | |
//Call the function after the sp.js is loaded. | |
ExecuteOrDelayUntilScriptLoaded(runCode, "sp.js"); |
The important parts to note in this code are the RowLimit
The ListItemCollectionPosition.pagingInfo determines the id of the last item fetched along with the filter and sorting criteria. It specifies information, as name-value pairs, required to get the next page of data for a list view.
2 comments:
Hi Vardhaman,
This is fine to navigate to next page. I can use the id of the last item queried. But when we want to go to previous page, what can be the solution.. we cannot the use this method, to navigate both sides.. it is helpful only for navigating to next page..
Hi Vignesh
To go to the previous page, you will have to keep track of the listitemcollectionposition of the previous page in a variable. And when you want to go to the specific position, use the value from the variable.
Alternatively, you can cache the current list items when you go to the next page. And when you want to go back from the next page, show the cached items
HTH
Post a Comment