Constructor
Configure a component to have the basic properties that are expected inside a form.
JavaScript:
-
new Coral.mixin.formField()
Instance Properties
-
instance.disabled {Boolean}
Reflected -
- Default Value:
- false
- HTML Attribute:
- disabled
-
instance.invalid {Boolean}
Reflected -
- Default Value:
- false
- HTML Attribute:
- invalid
-
instance.labelledBy {String}
-
- Default Value:
- null
- HTML Attribute:
- labelledby
-
instance.name {String}
Reflected -
- Default Value:
- ""
- HTML Attribute:
- name
-
instance.readOnly {Boolean}
Reflected -
- Default Value:
- false
- HTML Attribute:
- readonly
-
instance.required {Boolean}
Reflected -
- Default Value:
- false
- HTML Attribute:
- required
-
instance.value {String}
-
- Default Value:
- ""
- HTML Attribute:
- value
Whether this field is disabled or not.
Whether the current value of this field is invalid or not.
Reference to a space delimited set of ids for the HTML elements that provide a label for the formField.
Implementers should override this method to ensure that the appropriate descendant elements are labelled using the
aria-labelledby
attribute. This will ensure that the component is properly identified for
accessibility purposes. It reflects the aria-labelledby
attribute to the DOM.
Name used to submit the data in a form.
Whether this field is readOnly or not. Indicating that the user cannot modify the value of the control.
This is ignored for checkbox, radio or fileupload.
Whether this field is required or not.
This field's current value.
Events
-
change
-
- Callback Parameters:
-
Name Type Description event Object Event object.
Triggered when the value has changed. This event is only triggered by user interaction.