Rails和Formtastic:如何在右侧显示复选框的标签?

时间:2012-08-09 20:36:17

标签: ruby-on-rails ruby twitter-bootstrap formtastic

我正在使用Twitter Bootstrap。

我有以下代码......

<div class="row">
  <div class="span5">
    <%= f.input :is_authorized_to_leave_with_child %>
    <%= f.input :is_emergency_contact %>
  </div>
  <div class="span5">
  </div>
</div>

问题是,标签显示在左侧,复选框显示在右侧。与Twitter Bootstrap示例表单复选框部分的外观完全相反,请查看:http://twitter.github.com/bootstrap/base-css.html#forms

复选框位于右侧,标签位于右侧。我怎么能这样显示呢?

1 个答案:

答案 0 :(得分:4)

formtastic 2.x 开始,您可以使用app/inputs/#{ input_name.underscore }_input.rb文件重新定义现有输入的行为。

BooleanInput的默认行为是:调用to_html方法,调用label_with_nested_checkbox,调用label_text_with_embedded_checkbox,创建以下布局:

<label>
  <input />
</label>

并使用此逻辑:

check_box_html << "" << label_text

因此,您需要做的一切只是使用以下代码创建app/inputs/boolean_input.rb文件:

class BooleanInput < Formtastic::Inputs::BooleanInput
def label_text_with_embedded_checkbox
        label_text << "" << check_box_html
    end
end

并更改app/assets/formtastic-ie7.css文件以使输入看起来更漂亮:

.formtastic .boolean label input {
    left:-4px;
}

以下是它的样子:

enter image description here