Search code examples
ruby-on-railsrubytwitter-bootstrapfield-with-errors

ruby on rails and bootstrap , make field_with_errors display horizontal


in custom.css.scss file

.field_with_errors {
    @extend .control-group;
    @extend .error;

}

and the html.erb

<%= form_for @timecard , url:{action: "savecard"},html:{class: "form-inline"} do |f| %>
    <%= f.label :"Date"%>
    <%= f.date_select :starttime ,{use_month_numbers: true }, class: "input-small" %>
    <%= f.label :"Hours"%>
    <%= f.number_field :hours, class: "input-small" %>
    <%= f.label :"Project"%>
    <% projects = Project.all.map { |project| [project.name, project.charge_number]  } %>
    <%= f.select :charge_number, options_for_select(projects) ,{},class: "input-small" , style:"width:150px"%>
    <%= f.submit "Save", class: "btn" %>
    <%= f.submit "Delete", class: "btn" %>
    <%= f.submit "Submit", class: "btn btn-danger",confirm:"You can't edit it agin if you've submitted it" %>
<% end %>

In normal status ,it looks nice

enter image description here but if something wrong happened,it looks like this enter image description here

and the html code it generated

<label for="time_card_Hours">Hours</label>
    <div class="field_with_errors"><input class="input-small" id="time_card_hours" name="time_card[hours]" type="number" /></div>
    <label for="time_card_Project">Project</label>

Solution

  • Because you are using form-inline, and div displays as a block default. try

    .field_with_errors {
        @extend .control-group;
        @extend .error;
    
        display: inline-block;
    }