README
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
源码类别:

Ajax

开发平台:

Others

  1. ActsAsList
  2. ==========
  3. This acts_as extension provides the capabilities for sorting and reordering a number of objects in a list. The class that has this specified needs to have a +position+ column defined as an integer on the mapped database table.
  4. Example
  5. =======
  6.   class TodoList < ActiveRecord::Base
  7.     has_many :todo_items, :order => "position"
  8.   end
  9.   class TodoItem < ActiveRecord::Base
  10.     belongs_to :todo_list
  11.     acts_as_list :scope => :todo_list
  12.   end
  13.   todo_list.first.move_to_bottom
  14.   todo_list.last.move_higher
  15. Copyright (c) 2007 David Heinemeier Hansson, released under the MIT license