import FieldInput from "@arcgis/core/widgets/FeatureForm/FieldInput.js";
const FieldInput = await $arcgis.import("@arcgis/core/widgets/FeatureForm/FieldInput.js");
@arcgis/core/widgets/FeatureForm/FieldInput
This is a read-only support class that represents a field's input. It helps provide a consistent API for the different types input used by the FeatureForm widget. The values are computed internally by the FeatureFormViewModel.
- See also
Property Overview
| Name | Type | Summary | Class |
|---|---|---|---|
The type of data displayed by the field input. | FieldInput | ||
The name of the class. | Accessor | ||
The input value's domain. | FieldInput | ||
Indicates if the field is editable. | FieldInput | ||
If the input field's value is invalid, this property returns a validation error code. | FieldInput | ||
The associated field. | FieldInput | ||
The group containing the field input. | FieldInput | ||
A hint for the field's value. | FieldInput | ||
Indicates whether date information is included for date inputs. | FieldInput | ||
Indicates whether time information is included for date inputs. | FieldInput | ||
Indicates whether timestamp information is included for date inputs. | FieldInput | ||
The type of editor used when working with | FieldInput | ||
The field's label. | FieldInput | ||
Restricts the input length. | FieldInput | ||
Restricts the input length. | FieldInput | ||
The associated field name. | FieldInput | ||
Indicates whether the field is required. | FieldInput | ||
Indicates if the field's value can be submitted without introducing data validation issues. | FieldInput | ||
The type of input. | FieldInput | ||
Indicates if the field is updating. | FieldInput | ||
Indicates if the input value is valid. | FieldInput | ||
The field input's value. | FieldInput | ||
Indicates if the field is visible. | FieldInput |
Property Details
-
dataType
PropertydataType Stringreadonly -
The type of data displayed by the field input. Possible values are listed below.
Value Description number Input represents a number. text Input represents text. date Input represents a date. unsupported The field represents an unsupported value. A blobfield type is an example of this.Possible Values:"number" |"text" |"date" |"unsupported"
-
domain
Propertydomain CodedValueDomain |RangeDomain |InheritedDomain |null |undefinedreadonly -
The input value's domain. This is used to constrain the allowable values of the layer.
-
editable
Propertyeditable Booleanreadonly -
Indicates if the field is editable.
-
If the input field's value is invalid, this property returns a validation error code. Otherwise, it is
null.
-
field
Propertyfield Fieldreadonly -
The associated field.
-
group
Propertygroup GroupInput |null |undefinedreadonly -
The group containing the field input.
-
A hint for the field's value. This is a temporary placeholder inputs in either TextAreaInput or TextBoxInput.
-
includeDate
PropertyincludeDate Booleanreadonly -
Indicates whether date information is included for date inputs.
- Default Value:true
-
includeTime
PropertyincludeTime Booleanreadonly -
Indicates whether time information is included for date inputs.
- Default Value:true
-
includeTimeOffset
PropertyincludeTimeOffset BooleanreadonlySince: ArcGIS Maps SDK for JavaScript 4.28FieldInput since 4.27, includeTimeOffset added at 4.28. -
Indicates whether timestamp information is included for date inputs.
- Default Value:false
-
The type of editor used when working with
stringfields. Possible values are in the table below.Value Description text-box An HTML textbox used to capture input. text-area An HTML textarea used to capture input. Possible Values:"switch" |"barcode-scanner" |"combo-box" |"date-picker" |"datetime-picker" |"datetimeoffset-picker" |"radio-buttons" |"text-area" |"text-box" |"time-picker"
- Default Value:"text-box"
-
label
Propertylabel Stringreadonly -
The field's label.
-
maxLength
PropertymaxLength Numberreadonly -
Restricts the input length.
-
minLength
PropertyminLength Numberreadonly -
Restricts the input length.
-
name
Propertyname Stringreadonly -
The associated field name.
-
required
Propertyrequired Boolean -
Indicates whether the field is required. If the field is not editable, this property returns
false.
-
submittable
Propertysubmittable Booleanreadonly -
Indicates if the field's value can be submitted without introducing data validation issues.
-
type
Propertytype Stringreadonly -
The type of input.
For FieldInput the type is always "field".
-
updating
Propertyupdating Booleanreadonly -
Indicates if the field is updating. This is applicable if the field has a value defined for FieldElement.valueExpression or FieldElement.editableExpression. The property returns
truewhenever one or both of these expressions are processing. If the field belongs to a form configured with preserveFieldValuesWhenHidden set to false, this will also be true when FieldElement.visibilityExpression is processing.
-
valid
Propertyvalid Booleanreadonly -
Indicates if the input value is valid.
-
visible
Propertyvisible Booleanreadonly -
Indicates if the field is visible.
Method Overview
| Name | Return Type | Summary | Class |
|---|---|---|---|
Adds one or more handles which are to be tied to the lifecycle of the object. | Accessor | ||
Returns true if a named group of handles exist. | Accessor | ||
Removes a group of handles owned by the object. | Accessor |
Method Details
-
Inherited from Accessor
-
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.when( () => !view.updating, () => { wkidSelect.disabled = false; }, { once: true } ); this.addHandles(handle); // Destroy the object this.destroy();ParametershandleOrHandles WatchHandle|WatchHandle[]Handles marked for removal once the object is destroyed.
groupKey *optionalKey identifying the group to which the handles should be added. All the handles in the group can later be removed with Accessor.removeHandles(). If no key is provided the handles are added to a default group.
-
hasHandles
InheritedMethodhasHandles(groupKey){Boolean}Inherited from Accessor -
Returns true if a named group of handles exist.
ParametergroupKey *optionalA group key.
ReturnsType Description Boolean Returns trueif a named group of handles exist.Example// Remove a named group of handles if they exist. if (obj.hasHandles("watch-view-updates")) { obj.removeHandles("watch-view-updates"); }
-
Inherited from Accessor
-
Removes a group of handles owned by the object.
ParametergroupKey *optionalA group key or an array or collection of group keys to remove.
Exampleobj.removeHandles(); // removes handles from default group obj.removeHandles("handle-group"); obj.removeHandles("other-handle-group");