1
0
Fork 0
mirror of https://github.com/heartcombo/simple_form.git synced 2022-11-09 12:19:26 -05:00

Update README.md

Added instructions for how to strip away the wrapper divs and just generate the <input> field only.
This commit is contained in:
Marc Gayle 2013-02-12 17:39:22 -05:00
parent 779a009027
commit d1ff0b11a4

View file

@ -221,6 +221,28 @@ the wrapper as well:
Any extra option passed to these methods will be rendered as html option.
### Stripping away all wrapper divs
**SimpleForm** also allows you to strip away all the div wrappers around the `<input>` field that is generated with the usual `f.input`.
The easiest way to achieve this is to use `f.input_field`.
Example:
```erb
simple_form_for @user do |f|
f.input_field :name
end
```
Produces:
```erb
<input class="string required" id="user_name" maxlength="100"
name="user[name]" size="100" type="text" value="Carlos" />
```
To view the actual RDocs for this, check them out here - http://rubydoc.info/github/plataformatec/simple_form/master/SimpleForm/FormBuilder:input_field
### Collections
And what if you want to create a select containing the age from 18 to 60 in your form? You can do it