Skip to content

Commit

Permalink
Fixes: #7
Browse files Browse the repository at this point in the history
  • Loading branch information
R Gastmeier committed Jun 24, 2019
1 parent 65aa83f commit 9ee3e50
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ var form = form.add(

form.find('general')
form.find('general.name')
form.find('general.level')
```

If an element which contains sub elements does not have a name it will still be taken into consideration.
Expand Down Expand Up @@ -262,7 +263,7 @@ friendsField.addOptions(
)
```

This scenario of referencing ids could also be solved differently through a field of type `number`. It all depends on what you need.
This scenario of referencing ids could also be solved differently through a field of type `number`. It all depends on what you need.

## Array fields

Expand Down Expand Up @@ -301,7 +302,7 @@ objectForm.add(arrayForm, numberForm)

## Form frame

The form has the `FormFrame` attached to it. It is a basic visual element which comes with a title and buttons. The reason for this is that you can use the `Form` as the root element so that you can use its `value` property directly. For convenience the `Form` yields the same properties as the `FormFrame` and the constructor even accepts its title.
The form has the `FormFrame` attached to it. It is a basic visual element which comes with a title and buttons. The reason for this is that you can use the `Form` as the root element so that you can use its `value` property directly. For convenience the `Form` yields the same properties as the `FormFrame` and the constructor even accepts its title.

```typescript
var form = new Form("Title")
Expand Down Expand Up @@ -492,10 +493,10 @@ If you do not have any renderer code as a boilerplate for your new project you w
The widget that we ship has the following basic properties.
- `invisble`
- `disabled`
- `label`
- `required`
- `invisble`
- `disabled`
- `label`
- `required`
- `error`
Define any widget that you may need.
Expand Down

0 comments on commit 9ee3e50

Please sign in to comment.