Form element control options.

Hierarchy

  • Options

Properties

Properties

aspects?: Aspect<void, void> | readonly Aspect<void, void>[]

Additional input aspects to apply. These are aspect converters to constructed control from the same-valued one.

form: InControl<any>

Submitted control. Typically a container.

modes?: {
    busy?: InMode.Value;
    invalid?: InMode.Value;
    notReady?: InMode.Value;
}

Input modes to derive from submitted control.

Applied to form element control by inModeByForm.

Type declaration

  • Optional Readonly busy?: InMode.Value

    Input mode to set while submitting. ro (read-only) by default.

  • Optional Readonly invalid?: InMode.Value

    Input mode to set when submit is not ready and the form is submitted. on (enabled) by default.

  • Optional Readonly notReady?: InMode.Value

    Input mode to set when submit is not ready. E.g. when input is invalid. on (enabled) by default.

Generated using TypeDoc