Codebase list libjs-angular-schema-form / 503abba
Fixed some grammar issues in the documentation Denis Dervisevic 9 years ago
1 changed file(s) with 3 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
12051205 In the form definition you can refer to properties of an array item by the empty
12061206 bracket notation. In the `key` simply end the name of the array with `[]`
12071207
1208 By default the array will start with one *undefined* value so that the user is presented with one a
1209 form, to supress this the attribute `startEmpty` to `true`
1208 By default the array will start with one *undefined* value so that the user is presented with one
1209 form element. To suppress this behaviour, set the attribute `startEmpty` to `true`.
12101210
12111211 Given the schema:
12121212 ```json
15691569 "eligible",
15701570 {
15711571 type: "conditional",
1572 condition: "model.person.eligible",
1572 condition: "model.person.eligible",
15731573 items: [
15741574 "code"
15751575 ]