I have class and know row ID, try update this row how it's showed in this topic
https://parse.com/questions/updating-a-field-without-retrieving-the-object-first
var Point = Parse.Object.extend("items");
var point = new Point();
point.id = "L8bc5utrVD";
// Set a new value on quantity
point.set("title", "new title");
// Save
point.save(null, {
success: function(point) {
// Saved successfully.
},
error: function(point, error) {
// The save failed.
// error is a Parse.Error with an error code and description.
console.log('Failed to create new object, with error code: ' + error.message);
}
});
but get error "Failed to create new object, with error code: have this item"