This object supports the Editor widget. It contains data for the CreateFeaturesWorkflow. This is accessed via the CreateFeaturesWorkflow.data.
Property Overview
Name | Type | Summary | Class | |
---|---|---|---|---|
CreationInfo | more details This provides the feature template and layer when creating a new feature. | more details | CreateFeaturesWorkflowData | |
String | more details The name of the class. | more details | Accessor | |
EditorViewModel | more details The associated EditorViewModel for this workflow. | more details | CreateFeaturesWorkflowData |
Property Details
-
creationInfo CreationInfo
-
This provides the feature template and layer when creating a new feature.
-
The name of the class. The declared class name is formatted as
esri.folder.className
.
-
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.