Voici un exemple simple du problème.imbriqué link_to_function/insert_html ne fonctionne pas
En bref, si vous avez un index.rhtml avec:
<%= link_to_function "A link to insert a partial with nested insert_html" do |page|
page.insert_html :top, :with_a_nested_insert_html, :partial => 'example_partial_with_nested_insert_html'
end %>
Et _example_partial_with_nested_insert_html.rhtml
<%= link_to_function "A nested link to insert_html" do |page|
page.insert_html :top, :with_a_nested_insert_html, :partial => 'you_wont_see_this'
end %>
Il brise le « Un lien pour insérer une partie avec insert_html imbriqué ". Je pense que quelque chose doit être fait pour protéger le javascript dans le partiel.
Des pensées?