turn
<%= f.text_field, :title %>into
<%= f.field :text_field, :title %>as you see
fieldis a proxy method that send method and args toActionView::Helpers::FormBuilderinstance, so you can write like this:<%= f.field :text_area, :title %>
output:
<div class='row'>
<div class="large-12 columns">
<label>* Title
<input type="text" value="" name="article[title]" id="article_title">
</label>
</div>
</div>template above:
app/views/easy_form/_default.html.erb
<div class='row'>
<div class='large-12 columns'>
<label><%= '*' if required? %> <%= label_text %>
<%= input %>
</label>
</div>
</div>or you can use a named template:
<%= f.field :text_field, :title, template: 'bootstrap' %>or globally:
<%= form_for @article, template: 'bootstrap' %>###Install
gem 'easy_form'
bundle
rails g easy_form:view
###More example
<%= f.field :text_area, :content %>
<%= f.field :collection_check_boxes, :category_ids, Category.all, :id, :name %>
<%= f.field :collection_check_boxes, :category_ids, Category.all, :id, :name do |b| %>
<% b.label { b.check_box } %>
<% end %>
<%= f.field :collection_select, :user_id, User.all, :id, :name %>###Method and object in template
- input (input tag generated with rails form builder)
- field (field, such as :title)
- label_text (text display as label)
- required? (this field is required?)
- builder (rails form builder)