2.0 KiB
2.0 KiB
title | layout |
---|---|
Rails form helpers | default |
Form builder (form_for)
Building forms
- form_for @post do |f|
Options
- form_for @post, |
url: { method: 'put', action: 'create' }, |
html: { class: 'nifty_form' } do |f|
Text
f.text_field :title
f.text_area :body, size: '60x12'
Checkbox
f.check_box :remember_me
f.label :remember_me, "Remember me"
Radio
f.radio_button :gender, 'male'
f.label :gender_male, "Male"
f.radio_button :gender, 'female'
f.label :gender_female, "Female"
Label
f.label :post, :title
f.label :post, :title, "Title"
f.label :post, :title, "Title", class: "title"
f.label(:post, :terms) { "Accept terms" }
#=> <label for="post_title">Title</labele>
The model
f.object
Fields for
= form_for @post do |f|
= fields_for :author, @post.author do |ff|
= ff.text_field :name
Select dropdowns
f.select :city_id, [['Lisbon',1], ['Madrid',2], ...], 4 # (4 = selected)
options_for_select [['Lisbon',1], ['Madrid', 2], ...], 4 # Just makes <option> tags
Collections
f.collection_radio_buttons :author_id, Author.all, :id, :name_with_initial
f.collection_select :city_id, City.all, :id, :name
# (field, collection, value_key, label_key)
Time select
f.time_zone_select :time_zone
f.date_select :birthday
The rest
f.submit "Create"
f.hidden_field
I18n
helpers:
submit:
# helpers.submit.<action>
create: "Create a %{model}"
update: "Confirm changes to %{model}"
# helpers.submit.<model>.<action>
article:
create: "Publish article"
update: "Update article"
# helpers.label.<model>.<field>
label:
post:
body: "Your body text"
Outside f
radio_button("post", "category", "rails")
radio_button("post", "category", "java")
# picks from @post.category
# <input type="radio" id="post_category_rails" name="post[category]"
# value="rails" checked="checked" />