Browse Source

Merge pull request #4379 from eriklharper/patch-1

Add more information about defaultValue
main
Jim 9 years ago
parent
commit
fe215dc32e
  1. 4
      docs/07-forms.md

4
docs/07-forms.md

@ -81,6 +81,8 @@ An `<input>` that does not supply a `value` (or sets it to `null`) is an *uncont
This will render an input that starts off with an empty value. Any user input will be immediately reflected by the rendered element. If you wanted to listen to updates to the value, you could use the `onChange` event just like you can with controlled components.
###Default Value
If you want to initialize the component with a non-empty value, you can supply a `defaultValue` prop. For example:
```javascript
@ -89,7 +91,7 @@ If you want to initialize the component with a non-empty value, you can supply a
}
```
This example will function much like the **Controlled Components** example above.
This example will function much like the **Controlled Components** example above. *Note:* the defaultValue prop is only applied when the component mounts for the first time. If you need to programmatically update the value after initial mount, you will need to use a controlled component (see section on controlled components).
Likewise, `<input>` supports `defaultChecked` and `<select>` supports `defaultValue`.

Loading…
Cancel
Save