Displaying 1 result from an estimated 1 matches for "rightcolumncont".
2006 Jul 11
1
responds_to_parent plugin
...rails grows as well as as new features/
plugins come out so that I can see how different things work.
the controller looks like this:
def create
@publisher = Publisher.create(params[:publisher])
responds_to_parent do
render :update do |page|
page.replace_html ''rightcolumncontent'', :partial => ''show''
end
end
end
my problem is that safari automatically tries to create the publisher
as soon as I load up the new publisher page and runs create. This
happens after I try to load something. It seems to be getting the
iframe t...