1

我将 Formtastic 与Bootstrap formbuilder一起使用。我不知道如何将多个输入添加到控制组中,例如:

3 个输入并排

对我来说合乎逻辑的事情是执行以下操作(我正在使用 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'

但这只是将控件分组在一个字段集中。

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

4

1 回答 1

0

我最终将默认的 Rails 表单构建器用于需要相邻输入的区域。

于 2012-07-18T19:56:49.387 回答