Hey guys I was just wondering if it's possible to include a ProjectProperty with the GetListItems function? I'm unfortunately not getting much luck. I'm trying to query the Description property below.
var myQuery = "<Query><Where><BeginsWith><FieldRef Name='ContentType' /><Value Type='Text'>News</Value></BeginsWith></Where></Query>"; $().SPServices({ operation: "GetListItems", async: false, listName: "Pages", CAMLViewFields: "<ViewFields><FieldRef Name='Title' /><ProjectProperty Name='Description' /></ViewFields>", CAMLRowLimit: 5, completefunc: function (xData, Status) { $(xData.responseXML).SPFilterNode("z:row").each(function () { console.log($(this).attr('ows_Title')); }); } });