Sha256: 349fde6b5f62fff54d591087108c33fa7abc6a8c19a8147e129ffe0010678231
Contents?: true
Size: 1.93 KB
Versions: 1
Compression:
Stored size: 1.93 KB
Contents
class TableSettings attr_accessor :table_settings class Column attr_accessor :column_hash, :index def initialize(table_settings, index) @table_settings = table_settings @column_hash = {} @index = index end def css_class(class_name) @column_hash[:class_name] = class_name self end def filter_type(filter_type) if filter_type == :none @column_hash.delete(:filter) else @column_hash[:filter] = filter_type end self end def filter_data(array) @column_hash[:filter_data] = array self end def max_text_length(length) @column_hash[:max_text_length] = length self end def format_method(method_name) @column_hash[:format_method] = method_name self end def global_format_method(method_name) @column_hash[:global_format_method] = method_name self end end class CustomColumn < Column def params( name, label, column_method, column_class = nil, column_params = nil) @column_hash = { :name => name, :label => label, :column_method => column_method, :filter => :none } @column_hash[:column_class] = column_class unless column_class.nil? @column_hash[:column_params] = column_params unless column_params.nil? self end def callback_params(params) @column_hash[:column_params] = params self end def callback_method(name) @column_hash[:column_method] = name self end def callback_class(name) @column_hash[:column_class] = name self end end class StandardColumn < Column def params(name, label, table) @column_hash = { :name => name, :label => label, :table => table, :filter => :find } self end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
it-logica-application-backbone-1.0.4 | lib/table_settings/table_column.rb |