使用Formtastic-Bootstrap对控制组进行分组输入

时间:2012-07-16 20:59:38

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

我正在使用Formtastic和Bootstrap formbuilder。我无法弄清楚如何在控件组中添加多个输入,如下所示:

3 inputs next to each other

对我来说合乎逻辑的是做以下事情(我正在使用HAML):

= f.inputs do
      = f.input :city, :input_html=>{:class=>'input-small'}, :label=>false, :placeholder=>'City'
      = f.input :state, :input_html=>{:class=>'input-small'}, :label=>false, :placeholder=>'State'
      = f.input :zip, :input_html=>{:class=>'input-small'}, :label=>false, :placeholder=>'Zip'

但是,这只是将字段集中的控件分组。

我在文档中没有看到任何内容,谷歌也没有多少帮助。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

我最终使用默认的Rails表单构建器来处理我需要彼此相邻输入的区域。