FormField provides the basic properties that every component used in a form should have.

Coral.mixin.formField API

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
Whether this field is disabled or not.
Default Value:
  • false
HTML Attribute:
  • disabled

instance.invalid {Boolean}

Reflected
Whether the current value of this field is invalid or not.
Default Value:
  • false
HTML Attribute:
  • invalid

instance.labelledBy {String}

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.
Default Value:
  • null
HTML Attribute:
  • labelledby

instance.name {String}

Reflected
Name used to submit the data in a form.
Default Value:
  • ""
HTML Attribute:
  • name

instance.readOnly {Boolean}

Reflected
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.
Default Value:
  • false
HTML Attribute:
  • readonly

instance.required {Boolean}

Reflected
Whether this field is required or not.
Default Value:
  • false
HTML Attribute:
  • required

instance.value {String}

This field's current value.
Default Value:
  • ""
HTML Attribute:
  • value

Events

change

Triggered when the value has changed. This event is only triggered by user interaction.
Callback Parameters:
Name Type Description
event Object Event object.