method

TextListField.ReplaceValidators

Replace the list’s save validators.

Example

go
field.TextList("tags").ReplaceValidators()

Arguments

ArgumentTypeDescription
values[]Validator[[]string]The replacement callbacks; omit all arguments to remove custom save validators.

Returns

The updated TextListField; the original field is unchanged.

TextListField

How it works

Built-in item/count limits and live validators remain in place. Each callback receives the whole []string list.

Full signature

Related types

  • TextListField

    A configurable list of strings.

  • Validator

    Validator 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.

Related guides