我正在尝试确定在 Rails 3 中使用nested_form/simple_form gem 时是否有办法自定义由 link_to_add 插入的 HTML。
目前它生成一个 div,但我希望它生成一个表格行。
我看过一个使用 Cocoon gem 的例子,但我更喜欢使用 nested_form。
当前代码非常简单:
table.table.table-striped
tr
th Name
th Notes
th $ Value
th
= f.simple_fields_for :client_contracted_rates do |ccr|
tr
td = ccr.text_field :name, :class => "span2"
td = ccr.text_field :notes, :class => "span2"
td = ccr.text_field :value, :class => "span1"
td = ccr.link_to_remove "x", :class => "btn btn-mini btn-danger"
= f.link_to_add "+ Add Contracted Rate", :client_contracted_rates, :class => "btn pull-right"
我希望生成一个表格行,或者至少与 div 和输入默认值不同。
干杯,
城野