We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db3a1f7 commit ae81533Copy full SHA for ae81533
docs/api/AbstractControl.md
@@ -156,6 +156,20 @@ clearAsyncValidators(): void
156
Empties out the async validator list.
157
##
158
```ts
159
+markAsSubmitted: (opts?: {emitEvent?: boolean}) => void;
160
+```
161
+Marks the control as `submitted`.
162
+
163
+If the control has any children, it will also mark all children as `submitted`.
164
+##
165
+```ts
166
+markAsUnsubmitted: (opts?: {emitEvent?: boolean}) => void;
167
168
+Marks the control as `unsubmitted`.
169
170
+If the control has any children, it will also mark all children as `unsubmitted`.
171
172
173
markAsTouched(opts: {
174
onlySelf?: boolean;
175
} = {}): void
0 commit comments