max
function
Binds a validator to the given path that requires the value to be less than or equal to the
given maxValue
.
This function can only be called on number paths.
In addition to binding a validator, this function adds MAX
property to the field.
max
void
Binds a validator to the given path that requires the value to be less than or equal to the
given maxValue
.
This function can only be called on number paths.
In addition to binding a validator, this function adds MAX
property to the field.
@parampath
{ [ɵɵTYPE]: [number, TPathKind]; }
Path of the field to validate
@parammaxValue
number | LogicFn<number, number | undefined, TPathKind>
The maximum value, or a LogicFn that returns the maximum value.
@paramconfig
BaseValidatorConfig<number, TPathKind> | undefined
Optional, allows providing any of the following options:
error
: Custom validation error(s) to be used instead of the defaultValidationError.max(maxValue)
or a function that receives theFieldContext
and returns custom validation error(s).
@returns
void
Jump to details