Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create horizontal forms with twitter bootstrap and rails simple form

I am trying to create horizontal forms with simple-form and bootstrap. I have already installed bootstrap using "rails generate simple_form:install". This is what i have in html.erb

    <%= simple_form_for(@company, :html => { :class => "form-horizontal" }) do |f| %>
      <div class="form-group">
        <label class="col-md-4 control-label"></label>
        <div class="col-md-4">
           <%= f.input :name %>
</div>
</div>

But the form still appears vertically.

like image 957
Hakeem Baba Avatar asked Dec 13 '22 18:12

Hakeem Baba


1 Answers

simple_form is a really great gem for generating bootstrap forms. However, you have to do a little extra to get it working with Bootstrap’s form-horizontal class.

The README doesn’t mention this, but it’s built in. Just write your form declaration like this:

<%= simple_form_for [:admin, @c], html: { class: 'form-horizontal' },wrapper: :horizontal_form do |f| %>

 # ...form...

<% end %>

Note the wrapper attribute. This isn’t described in the README, and I had to dig through the code to figure it out.

Hope this helps you!

like image 165
Anand Jose Avatar answered Dec 17 '22 22:12

Anand Jose