我正在使用 simple_form、nested_form 和 Twitter Bootstrap,并尝试将 nested_form 中的“删除链接”与对象放在同一行。
现在它看起来像这样:
我希望它看起来像这样:
这是我的代码的样子:
<%= cform.simple_fields_for :licensings do |lf| %>
<%= lf.input :state, :collection => us_states, :wrapper => false %>
<%= lf.link_to_remove "Remove this Licensing", :class => 'btn btn-mini btn-danger' %>
<% end %>
我已经尝试将第二个 link_to_remove 放在第一个 lf.input 的块中,但是实际的下拉列表没有出现。我查看了 simple_form 的代码,但我无法追踪是否有办法实现这一点。