class ActiveList::Definition::CheckBoxColumn

Attributes

form_value[R]

Public Class Methods

new(table, name, options = {}) click to toggle source
Calls superclass method
# File lib/active_list/definition/check_box_column.rb, line 6
def initialize(table, name, options = {})
  super(table, name, options)
  @form_value = options.delete(:form_value)
end