• Overview
@angular/forms/signals

FormFieldBindingOptions

interface

API

    
      interface FormFieldBindingOptions {  readonly focus?: ((focusOptions?: FocusOptions | undefined) => void) | undefined;  readonly parseErrors?: Signal<WithoutFieldTree[]> | undefined;}
    
    

focus

((focusOptions?: FocusOptions | undefined) => void) | undefined

Focuses the binding.

If not specified, Signal Forms will attempt to focus the host element of the FormField when asked to focus this binding.

parseErrors

Signal<WithoutFieldTree[]> | undefined

Source of parse errors for this binding.

Jump to details