Drag-Drop Sortable for ActiveScaffold

Currently, this gem is compatible with rails 3.x and ActiveScaffold 3.3.x gems.

Overview

This gem adds an action to clone records. By default will only set attributes and belongs_to associations. You must override initialize_dup in your model or define a method to clone the record and set in conf.duplicate.method.

Installation

You’ll need at least ActiveScaffold 3.3.x to use this, and rails 3.x


gem install active_scaffold_duplicate

Usage

Step 1

Override intialize_dup in the model:


# app/models/bill.rb
class Bill < ActiveRecord::Base
  belongs_to :customer
  has_many :items
  
  def initialize_dup(other)
    super
    self.items = other.items.map(&:dup)
  end
end

Step 2

Add duplicate action.


class BillsController < ApplicationController
  active_scaffold do |conf|
    conf.actions << :duplicate
  end
end

Step 3

Change method to :get in link if you want to display create form instead of cloning record.


class BillsController < ApplicationController
  active_scaffold do |conf|
    conf.duplicate.link.options.method = :get
  end
end

Also you can change it globally.


class ApplicationController < ActionController::Base
  active_scaffold.set_defaults do |conf|
    conf.duplicate.link.options.method = :get
  end
end

If you use :post method, you can enable refresh_list to refresh the list instead of only adding new record at top, or set action_after_clone to open edit form for example:


  conf.duplicate.refresh_list = true
  conf.duplicate.action_after_clone = :edit

Support

If you have issues installing the gem, search / post to the Active Scaffold forum or Create an issue

Contributing

Fork, hack, push, and request a pull:

http://github.com/activescaffold/active_scaffold_duplicate/

License

Released under the MIT license (included).

Author

Contact me:


  Sergio Cambra – irb(main):001:0> ( ‘sergioATprogramatica._see_s’.gsub(‘<em>see</em>’, ‘e’).gsub(‘AT’, ‘@’) )