Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a nested form and once I save, I want to be able to click a link on the show page to copy or clone that form and open a new one. From there I should be able to make edits (like a new id) and save as a new record. I have seen some examples like this deep_cloneable gem, but I have no idea how to implement it. I think this should be simple, but I just don't understand where to put things in the controller and in the show view.

share|improve this question

2 Answers

up vote 12 down vote accepted

If you want to copy an activeRecord object you can use its attributes to create new one like

you can have an action in your controller which can be called on link,

def  create_from_existing
 @existing_post = Post.find(params[:id])
 #create new object with attributes of existing record 
 @post = Post.new(@existing_post.attributes) 
 render "your_post_form"
end
share|improve this answer
Thanks, so after that goes in my controller, how should the link_to tag look in the view? – FattRyan Apr 19 '11 at 4:22
are you new to rails? on show page you need to render some link say link_to "Copy to new record",{:controller=>"your controller",:action=>'create_from_existing',:id=>params[:id]} also, define route inroute.rb file for create_from_existing action. if you want to show this form on existing page then you can use ajax using link_to_remote (link_to :remote=>true, rails 3) – Naren Sisodiya Apr 19 '11 at 4:29
How does this handle has_many? Does it create new records for the child objects or does it use the same records? – Mike Feb 3 at 16:06
class Foo < ActiveRecord::Base
  def self.clone_from(parent)
    parent = find(parent) unless parent.kind_of? Foo
    foo = self.new
    foo.attributes = parent.attributes
    # if you want to also clone a habtm:
    foo.some_association_ids = parent.some_association_ids
    # etc.
    foo
  end
end

class FoosController < ApplicationController
  def clone
    foo = Foo.clone_from(params[:id])
    respond_with(foo)
  end
end
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.