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 %>
最初のlf.inputのブロック内に2番目のlink_to_removeを配置しようとしましたが、実際のドロップダウンが表示されません。simple_formのコードを調べましたが、これを実現する方法があるかどうかを追跡できませんでした。