Represents a table to be included in search.
Constructors
-
new SearchTable(properties)
-
Parameter:properties Objectoptional
See the properties for a list of all the properties that may be passed into the constructor.
Property Overview
Name | Type | Summary | Class | |
---|---|---|---|---|
String | more details The name of the class. | more details | Accessor | |
SearchTableField | more details The field to use for search. | more details | SearchTable | |
String | more details The id of the table. | more details | SearchTable |
Property Details
-
The name of the class. The declared class name is formatted as
esri.folder.className
.
-
field SearchTableField
-
The field to use for search.
-
id String
-
The id of the table.
Method Overview
Name | Return Type | Summary | Class | |
---|---|---|---|---|
SearchTable | more details Creates a deep clone of this object. | more details | SearchTable | |
more details Adds one or more handles which are to be tied to the lifecycle of the object. | more details | Accessor |
Method Details
-
clone(){SearchTable}
-
Creates a deep clone of this object.
Returns:Type Description SearchTable Creates a deep clone of the instance calling this method.
-
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.