Sha256: 243bf6a7d4c798846b2dd5633dd2bf3fdf4a7afe13bf6cd4040f3adb16b959d4

Contents?: true

Size: 656 Bytes

Versions: 3

Compression:

Stored size: 656 Bytes

Contents

# encoding: UTF-8
module Wice
    COLUMN_PROCESSOR_INDEX = ActiveSupport::OrderedHash[
      :action   , 'action_view_column', # Special processor for action column, columns with checkboxes
      :text     , 'view_column_string',
      :string   , 'view_column_string',
      :timestamp, 'view_column_datetime',
      :datetime , 'view_column_datetime',
      :date     , 'view_column_date',
      :integer  , 'view_column_integer',
      :float    , 'view_column_float',
      :decimal  , 'view_column_float',
      :custom   , 'view_column_custom_dropdown',  # Special processor for custom filter columns
      :boolean  , 'view_column_boolean'
    ]
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wice_grid-3.2.0 lib/view_columns/column_processor_index.rb
wice_grid-3.2.0.pre4 lib/view_columns/column_processor_index.rb
wice_grid-3.2.0.pre3 lib/view_columns/column_processor_index.rb