@williamnevarez
Actually, it should be :) You can just copy/paste the function above (bulkupdate) and use it like this:
Actually, it should be :) You can just copy/paste the function above (bulkupdate) and use it like this:
bulkUpdate({
SPServicesOptions: {
listName: "Anoucements"
},
updates: [
"<Method ID='1' Cmd='Update'>" +
"<Field Name='Title'>New Title Value</Field>" +
"<Field Name='ID'>1234</Field>" +
"</Method>"
]
})
.done(function(xData, status){
alert("all updates done!");
})
.fail(function(xData, status){
alert("Update failed.");
});
The other input parameters are documented above in the post right after the function I posted... They are: updates
SPServicesOptions
batchSize
Paul.