| |
Low Pro |
Hello
I'm sure some of you are familiar with Ryan Bates' weekly tutorials on
Mostly this has been easy enough, but I'm not sure how to rewrite the
# projects_helper.rb
How do I deal with this?
Thanks.
railscasts.com. A few months ago there was a three-part series
(episodes 73-75) about creating/editing multiple models in one form.
I'm trying to achieve the same but not use obtrusive things like
link_to_function.
add_task_link function (which Ryan makes into a helper at the end of
episode 74):
def add_task_link(name)
link_to_function name do |page|
page.insert_html :bottom, :tasks, :partial => 'task', :object =>
Task.new
end
end