Hide Table of Contents
esri/dijit/util
esri/layer/pixelFilters
esri/process
esri/support
esri/workers
Class: FeatureEditResult

require(["esri/layers/FeatureEditResult"], function(FeatureEditResult) { /* code goes here */ });

Description

(Added at v2.0)
The results of a feature edit such as add, update or delete.

See also
FeatureLayer.on("add-attachment-complete")
FeatureLayer.applyEdits(adds, updates, deletes)
FeatureLayer.on("edits-complete")

Samples

Search for samples that use this class.

Properties

NameTypeSummary
attachmentIdNumberUnique ID of the attachment.
errorErrorInformation about errors that occur if the edit operation failed.
objectIdNumberUnique ID of the feature or object.
successBooleanIf true the operation was successful.
Property Details

<Number> attachmentId

Unique ID of the attachment. Applicable only when adding or deleting feature attachments.

<Error> error

Information about errors that occur if the edit operation failed.

<Number> objectId

Unique ID of the feature or object.

<Boolean> success

If true the operation was successful.
Known values: true | false
Show Modal