TanStack
FormApi Reference

ClearFieldValuesFn

Type Alias: ClearFieldValuesFn<TFormData>

ts
type ClearFieldValuesFn<TFormData> = <TFieldName>(arrayFieldName, options?) => void;

Defined in: FormApi/FormApiArrayMethods.types.public.ts:218

Removes every element from an array field.

A runtime value that is not an array produces a warning and is left unchanged. By default, the update marks the array field as touched and dirty, notifies change listeners, and runs change validation.

Type Parameters

TFormData

TFormData

Library-managed. Do not specify explicitly.

Type Parameters

TFieldName

TFieldName extends ArrayFieldName<TFormData>

Library-managed. Do not specify explicitly.

Parameters

arrayFieldName

TFieldName

The array field path.

options?

FieldUpdateOptions

Controls metadata updates and whether validation runs.

Returns

void

Example

ts
// items: ['first', 'second']
formApi.clearFieldValues('items')
// items: []