Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Documented the value attribute
  • Loading branch information
christianalfoni committed Jan 17, 2015
1 parent 4127480 commit 7c95bf1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ A form input builder and validator for React JS
- [onInvalid()](#oninvalid)
- [Formsy.Mixin](#formsymixin)
- [name](#name)
- [value](#value)
- [validations](#validations)
- [validationError](#validationerror)
- [required](#required)
Expand Down Expand Up @@ -246,6 +247,12 @@ Whenever the form becomes invalid the "onInvalid" handler is called. Use it to f
```
The name is required to register the form input component in the form.

#### <a name="value">value</a>
```html
<MyInputComponent name="email" value="My default value"/>
```
You should always use the **getValue()** method inside your formsy form element. To pass a default value, use the value attribute.

#### <a name="validations">validations</a>
```html
<MyInputComponent name="email" validations="isEmail"/>
Expand Down

0 comments on commit 7c95bf1

Please sign in to comment.