Reputation: 2485
Is it possible to group inputs with simple_form?
I want "Postcode and city" to appear with one label and two inputs in one div
as a group and not separately. But I cannot find a switch that turns off the label…
Upvotes: 1
Views: 2147
Reputation: 883
@rafaelfranca is right.
I am using Simple Form with an address like this:
<%= f.input :address, :placeholder => "Street + housenumber" %>
<%= f.input :zip, :label => false, :placeholder => "ZIP-code" %>
<%= f.input :locality, :label => false, :placeholder => "City/Town/Locality" %>
<%= f.input :state, :label => false, :placeholder => "State/Area" %>
<%= f.input :country, :label => false, :placeholder => "Country" %>
Then you will get only one label "Address" for the first text field. And all the next fields will show a placeholder.
Upvotes: 1
Reputation: 3285
You can turn off the label on one input with the :label => false
option.
Like this:
<%= f.input :name, :label => false %>
Upvotes: 3