Skip to content

Commit 63c02b1

Browse files
committed
...
1 parent f0a6d62 commit 63c02b1

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

SUMMARY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
* [Schema](component/schema.md)
99
* [Model](component/model.md)
1010
* [Options](component/options.md)
11+
* [Events](component/events.md)
1112
* [Fields](fields/README.md)
1213
* [Field Properties](fields/field_properties.md)
1314
* [Inside Buttons](fields/inside_buttons.md)

component/options.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Property | Default | Type | Description
88
validateAfterLoad | `false` | `boolean` | Execute validation after model loaded
99
validateAfterChanged | `false` | `boolean` | Execute validation after every change
1010
fieldIdPrefix | _none_ | `string` | Prefix to add to every field's `id`. Will be prepended to ids explicity set in the schema, as well as auto-generated ones.
11-
validateAsync | `false` | `boolean` | `validate()` method returns a Promise, refer to [validation](validation/custom-validators.md#asynchronous-validators)
11+
validateAsync | `false` | `boolean` | `validate()` method returns a Promise, refer to [validation](/validation/custom-validators.md#asynchronous-validators)
1212
validationErrorCLass | `"error"` | `string` | CSS Class attached to elements which are invalid
1313
validationSuccessClass | _none_ | `string` | CSS Class attached to elements which are valid
14-
validateDebounceTime | `0` | `integer` | Amount of time in milliseconds validation waits before checking, refer to [validation](validation/README.md#debounce)
14+
validateDebounceTime | `0` | `integer` | Amount of time in milliseconds validation waits before checking, refer to [validation](/validation/README.md#debounce)

component/schema.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Schema
22

3-
The schema contains the [fields](fields/README.md) of the form, optionally in groups.
3+
The schema contains the [fields](/fields/README.md) of the form, optionally in groups.
44

55
## Examples
66

@@ -117,5 +117,5 @@ This form would have a text input for Name, followed by a fieldset for "User Det
117117
> **Note**: any ungrouped fields will be output first, followed by any groups.
118118
119119

120-
[Available field types](fields/README.md)
120+
[Available field types](/fields/README.md)
121121

0 commit comments

Comments
 (0)