Optional
istrue
if this field has an invalid value, or false
otherwise.
Readonly
istrue
if the validation is pending, or false
otherwise.
The pending validation, or null
if there's no pending validation.
The validator to which the field value validation is delegated.
Aborts the async validation of the validation root field associated with this field. No-op if there's no pending validation.
Subscribes to the start of the validation. Event.data carries the validation that is going to start.
The type of the event.
The subscriber that would be triggered.
The callback to unsubscribe the subscriber.
Subscribes to the end of the validation. Check isInvalid to detect the actual validity status. Event.data carries the validation that has ended.
The type of the event.
The subscriber that would be triggered.
The callback to unsubscribe the subscriber.
Triggers a synchronous field validation.
If this field is currently being validated then the validation is aborted at current validation root.
Transient descendants of this field are excluded from validation.
Optional
options: OptionsOptions passed to the validator.
true
if the field is valid, or false
if this field or any of it descendants have an associated error.
Triggers an asynchronous field validation.
If this field is currently being validated then the validation is aborted at current validation root.
Transient descendants of this field are excluded from validation.
Optional
options: OptionsOptions passed to the validator.
true
if the field is valid, or false
if this field or any of it descendants have an associated error.
The plugin that enables a field value validation.