MCPcopy Index your code
hub / github.com/angular/angular / markAllAsTouched

Function markAllAsTouched

packages/forms/src/model/abstract_model.ts:1047–1051  ·  view source on GitHub ↗

* Marks the control and all its descendant controls as `touched`. * @see markAsTouched() * * @param opts Configuration options that determine how the control propagates changes * and emits events after marking is applied. * * `emitEvent`: When true or not supplied (the default

(opts: {emitEvent?: boolean} = {})

Source from the content-addressed store, hash-verified

1045 *
1046 */
1047 markAllAsTouched(opts: {emitEvent?: boolean} = {}): void {
1048 this.markAsTouched({onlySelf: true, emitEvent: opts.emitEvent, sourceControl: this});
1049
1050 this._forEachChild((control: AbstractControl) => control.markAllAsTouched(opts));
1051 }
1052
1053 /**
1054 * Marks the control as `untouched`.

Callers

nothing calls this directly

Calls 2

markAsTouchedMethod · 0.65
_forEachChildMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…