Rails 3.1。需要Cocoon link_to_add_association示例

时间:2011-09-24 10:46:27

标签: forms ruby-on-rails-3 cocoon-gem

请显示使用Cocoon的'link_to_add_association'和html_options的任何示例。 https://github.com/nathanvda/cocoon

文档说:

html_options: extra html-options (see link_to) There are two extra options that allow to conrol the placement of the new link-data:

    data-association-insertion-node : the jquery selector of the node
    data-association-insertion-position : insert the new data before or after the given node.

但我无法理解该怎么做,如果我想在我的“添加元素”链接之前插入部分。不仅在父母的div开始之后。这不会起作用:

  

<%= link_to_add_association“add element”,f,:production_years,   :position => “after_all”%>

2 个答案:

答案 0 :(得分:9)

我承认这有点模糊,也许我应该在代码中提供一个例子。

在你的application.js中,你应该写下这样的内容:

$(document).ready(function() {
    $("a.add_fields").
      data("association-insertion-position", 'before').
      data("association-insertion-node", 'this');
});

其中a.add_fields将选择您的可点击链接。我刚刚更新了自述文件,更好地解释了如何处理插入。

希望这有帮助。

答案 1 :(得分:6)

如果你想使用数据属性来做,你可以这样做:

<%= link_to_add_association 'Add Item', f, :items, :data => {"association-insertion-method" => "before" } %>