IDataFormValidationRule
@spartanfx/react / index / IDataFormValidationRule
Interface: IDataFormValidationRule<TValue>
Type Parameters
TValue
TValue extends DataFormValues = DataFormValues
Properties
Required
| Property | Type | Description |
|---|---|---|
type | | "max" | "min" | "pattern" | "maxLength" | "minLength" | "required" | "url" | "email" | "custom" | - |
Options
| Property | Type | Description |
|---|---|---|
message? | string | - |
value? | string | number | RegExp | - |
Events & callbacks
| Property | Type | Description |
|---|---|---|
validate? | (value, values, context) => | DataFormFieldValidationOutcome | Promise<DataFormFieldValidationOutcome> | - |