You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,7 @@ Note that this is still a work in progress so some fields are under construction
74
74
The form object is used to track the state of the form. Whether it is valid or not, whether there are any errors etc. The following attributes will be set under each field key. e.g. if you had a field with the key of `name` you could access these under `form.name`
75
75
76
76
| Attribute | Type | Default | Description |
77
+
| --- | --- | --- | --- |
77
78
| $dirty |`boolean`|`false`|***RESTRICTED*** This is set by the system and is just there for your reference. It gets set to `true` upon blur or change, whichever happens first. |
78
79
| $active |`boolean`|`false`|***RESTRICTED*** Also set by the system and is set to true on focus. |
79
80
@@ -101,6 +102,7 @@ These options are used by all the different field types. Some fields may have sp
101
102
These should be added to the `templateOptions` property. Some input types may have specific options which can be used here and will be specified below.
102
103
103
104
| Property | Type | Default | Description |
105
+
| --- | --- | --- | --- |
104
106
| onBlur |`function(e)`|`null`| A function to run on @blur event |
105
107
| onFocus |`function(e)`|`null`| A function to run on @focus event |
106
108
| onClick |`function(e)`|`null`| A function to run on @click event |
0 commit comments