I am finding samples of virtually everything but what I am trying to do. I have a Custom List with 2 relevant columns: 'fk' and 'desc.'
I want to delete all the rows with a specific fk. This can be zero to maybe 5 rows.
I have tried a number of things, in trying to follow the samples I've found, but I keep getting that it "Cannot complete the action, Try again."
Gee, I really could use a list of the properties I need to provide, and what their values should be like.
function deleteProperty(fk)
{
$().SPServices({ async: false,
operation: "UpdateListItems",
listName: "Property",
Cmd: "Delete",
CAMLQuery: "<Query><Where>"
+ " <Eq>"
+ " <Field NAME='fkPrpPass' />"
+ " <Value>" + fk + "</Value>"
+ " </Eq>"
+ "</Where></Query>",
completefunc: function (xData, Status) { . . .
↧