我将 Formtastic 与Bootstrap formbuilder一起使用。我不知道如何将多个输入添加到控制组中,例如:
对我来说合乎逻辑的事情是执行以下操作(我正在使用 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'
但这只是将控件分组在一个字段集中。
我在文档中没有看到任何内容,谷歌也没有提供太多帮助。有人可以帮忙吗?