Quantcast
Channel: jQuery Library for SharePoint Web Services
Viewing all articles
Browse latest Browse all 6517

New Post: Can't get CAMLRowLimit working

$
0
0
Does anyone see any problems with the code below? I not getting some items returned because of the default view set on the list I am querying.

$().SPServices({
operation: "GetListItems",
async: false,
CAMLRowLimit: 0,
listName: listName,
CAMLViewFields: "<ViewFields><FieldRef Name='Name'/><FieldRef Name='FileSizeDisplay'/><FieldRef Name='Modified'/><FieldRef Name='Author'/><FieldRef Name='Created'/><FieldRef Name='Path'/></ViewFields>",
CAMLQueryOptions: "<QueryOptions><ViewAttributes Scope='Recursive'/></QueryOptions>",
completefunc: function (xData, Status) {
$(xData.responseXML).SPFilterNode("z:row").each(function() {

Viewing all articles
Browse latest Browse all 6517

Trending Articles