ruby on rails and bootstrap , make field_with_errors display horizontal

谁说胖子不能爱 提交于 2019-12-24 15:11:08

问题


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

but if something wrong happened,it looks like this

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>

回答1:


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;
}



回答2:


Note that with Bootstrap 3 names have changed

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



回答3:


I ended up using the following:

.field_with_errors {
  @extend .has-error;
}

.form-inline .field_with_errors {
  display: inline-block;
}

This extends the .has-error Bootstrap class for all forms, and if the form used is an inline form (.form-inline), it displays .field_with_errors as inline-block.



来源:https://stackoverflow.com/questions/18307376/ruby-on-rails-and-bootstrap-make-field-with-errors-display-horizontal

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!