This object supports the Editor widget. It contains data for the UpdateWorkflow. This is accessed via the UpdateWorkflow.data.
Property Overview
Name | Type | Summary | Class | |
---|---|---|---|---|
Graphic[] | more details An array of features to be updated. | more details | UpdateWorkflowData | |
String | more details The name of the class. | more details | Accessor | |
EditableItem | more details The object that matches the feature being updated. | more details | UpdateWorkflowData | |
Edits | more details The edits used to keep track of a feature being updated. | more details | UpdateWorkflowData | |
EditorViewModel | more details The associated EditorViewModel for this workflow. | more details | UpdateWorkflowData |
Property Details
-
An array of features to be updated. This is only relevant when there are multiple candidates to update.
-
The name of the class. The declared class name is formatted as
esri.folder.className
.
-
editableItem EditableItem
-
The object that matches the feature being updated.
-
viewModel EditorViewModel
-
The associated EditorViewModel for this workflow.
Method Overview
Name | Return Type | Summary | Class | |
---|---|---|---|---|
more details Adds one or more handles which are to be tied to the lifecycle of the object. | more details | Accessor |
Method Details
-
own(handleOrHandles)inheritedSince: ArcGIS API for JavaScript 4.24
-
Adds one or more handles which are to be tied to the lifecycle of the object. The handles will be removed when the object is destroyed.
// Manually manage handles const handle = reactiveUtils.whenOnce(() => !view.updating) .then(() => { wkidSelect.disabled = false; }); handle.remove(); // Assign a handle using own() this.own(reactiveUtils.whenOnce(() => !view.updating) .then(() => { wkidSelect.disabled = false; }));
Parameter:handleOrHandles WatchHandle|WatchHandle[]Handles marked for removal once the object is destroyed.