method
TextListField.ReplaceValidators
Replace the list’s save validators.
Example
field.TextList("tags").ReplaceValidators()Arguments
| Argument | Type | Description |
|---|---|---|
values | []Validator[[]string] | The replacement callbacks; omit all arguments to remove custom save validators. |
Returns
The updated TextListField; the original field is unchanged.
TextListFieldHow it works
Built-in item/count limits and live validators remain in place. Each callback receives the whole []string list.
Full signature
func (f TextListField) ReplaceValidators(
values ...Validator[[]string],
) TextListFieldRelated types
TextListFieldA configurable list of strings.
ValidatorValidator checks a field before saving, after built-in checks and write hooks. Return issues for values the author needs to fix, or an error if the check could not run. An issue belongs to this field unless its Target names a child.