Simple_form form-horizo​​ntal仍然在bootstrap 3中不起作用

时间:2015-04-26 13:25:29

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

我很难在bundle update之后使用表单水平工作来获取simple_form:布局不再是水平的:(

我已阅读并尝试http://www.iconoclastlabs.com/blog/using-twitter-bootstrap-3-with-simple_formSimple_form class form-horizontal with bootstrap 3 not working in rails 4。后者声称,simple_form 3.1.0正在使用bootstrap 3,但这里没有:(

问题可能是,输入元素周围缺少:

<div class="form-group string required container_code">
    <label class="string required col-lg-2 control-label control-label" for="container_code"><abbr title="Benötigt">*</abbr> Nummer</label>
    <input class="string required form-control form-control" id="container_code" name="container[code]" type="text" value="1" />
</div>

至少,这里的例子看起来很不一样:http://www.tutorialrepublic.com/twitter-bootstrap-tutorial/bootstrap-forms.php

这些是我目前使用的宝石版本:

  • twitter-bootstrap-rails(3.2.1 cd805c7)
  • simple_form(3.1.0)
  • rails(4.0.0)

由于我是一名铁杆新秀,我希望bootstrap和simpleform可以帮助我避免这样的问题,所以我真的希望你能帮助我...

谢谢, 马库斯

1 个答案:

答案 0 :(得分:0)

你可能想尝试作为外部div:

<div class="form-inline">
  Your form code here
</div>