FieldValidationDelay

data class FieldValidationDelay(val onMount: Duration = Duration.ZERO, val onChange: Duration = 250.milliseconds, val onBlur: Duration = Duration.ZERO)

Deprecated

Please migrate to the new form implementation. This legacy code will be removed in a future version.

Represents the settings for delayed execution of field validation.

Constructors

Link copied to clipboard
constructor(onMount: Duration = Duration.ZERO, onChange: Duration = 250.milliseconds, onBlur: Duration = Duration.ZERO)

Creates a new instance of FieldValidationDelay.

Properties

Link copied to clipboard

The delay before validation when the field loses focus.

Link copied to clipboard

The delay before validation when the field value changes.

Link copied to clipboard

The delay before the validation when the field mount.