I started looking at permissions as well. At the beginning of my tests it did have custom security. I am now inheriting from the site. There are no folders. It’s a Simple configuration list.
Currently:
Code:
$(document).ready(function () {
$().SPServices.SPUpdateMultipleListItems({
listName:"y_MGT_Site Specifics",
CAMLQuery:"<Query><Where><Eq><FieldRef Name='Title'/><Value Type='Text'>Analytics</Value></Eq></Where></Query>",
valuepairs: [["GoogleUA","Frank"]],
completefunc:function (xData, Status) {
alert("Updated "+ Status + xData);
}
});
});
Thank you,
Frank Cardillo
404-652-4030
From: sympmarc [email removed]
Sent: Thursday, February 14, 2013 1:59 PM
To: Cardillo, Frank F.
Subject: Re: SPUpdateMultipleListItems Unable to update a specific list [SPServices:433140]
From: sympmarc
Goeff is right. All SPUpdateMultipleListItems does is first call GetListItems and then UpdateListItems on that set of items. Each user will only retrieve the items they are allowed to read in the first step and
update only the ones they can update in the second.
Permissions always apply.
M.