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.
2 parents f5ff44d + 65b8e5c commit d9cbcd4Copy full SHA for d9cbcd4
README.MD
@@ -239,6 +239,12 @@ let v = new aspnetValidation.ValidationService();
239
v.bootstrap({ watch: true });
240
```
241
242
+Alternatively, to update the validation service for a specific form (which was created or modified dynamically) without using a `MutationObserver`:
243
+```js
244
+let form = document.getElementById('my-form');
245
+v.scan(form);
246
+```
247
+
248
## Logging
249
250
There is a rudimentary logging infrastructure in place if you want to get more insight into what the library is doing.
@@ -254,4 +260,4 @@ export interface Logger {
254
260
255
261
let v = new aspnetValidation.ValidationService(console);
256
262
v.bootstrap();
257
-```
263
0 commit comments