Hello,
I 'm currently developing a fully ajaxified Portal with RoR for a
client.
In the page, i have an In Place Editing Area :
Clicking on the area (div), replace it with a content coming from a
Partial (i’ve extended the component InPlaceEditor from controls.js
for this)…This first Partial is called A
In this partial A.rhtml, i render a second ‘inner’ partial as :
render :partial=> ‘display_row’, :collection=>@my_collection
My ‘display_row’ inner partial includes the following code :
But when testing in the browser, and checking generated code with
Firebug, i do not see any node in my HTML page…seems to
have been skipped
This same ‘display_row’ inner partial is reused directly from RJS (in
the controller) :
render :update do |page|
page.insert_html :bottom, “container”, :partial => “display_row”
end
In this second case it works…i can see the node in the
generated HTML
Are there limitations with partials rendered from another partial?
Thanks
Laurent