Sha256: fad3674f88bf3e5963d2e5c5a651fdd1e9bb20778f696b8cfcdd8a91791c8034

Contents?: true

Size: 1.11 KB

Versions: 9

Compression:

Stored size: 1.11 KB

Contents

# encoding: utf-8
module Wice #:nodoc:
  module Columns #:nodoc:
    require 'active_support'

    COLUMN_PROCESSOR_INDEX = ActiveSupport::OrderedHash[ #:nodoc:
      :action,                 'column_action',               # Special processor for action column, columns with checkboxes
      :text,                   'column_string',
      :string,                 'column_string',
      :rails_datetime_helper,  'column_rails_datetime_helper',       # standard Rails datepicker helper
      :rails_date_helper,      'column_rails_date_helper',           # standard Rails date helper
      :jquery_datepicker,      'column_jquery_datepicker',
      :bootstrap_datepicker,   'column_bootstrap_datepicker',
      :html5_datepicker,       'column_html5_datepicker',     # not ready
      :integer,                'column_integer',
      :range,                  'column_range',
      :float,                  'column_float',
      :decimal,                'column_float',
      :custom,                 'column_custom_dropdown',      # Special processor for custom filter columns
      :boolean,                'column_boolean'
    ]
  end
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
wice_grid_ms-3.6.2 lib/wice/columns/column_processor_index.rb
wice_grid_ms-3.6.1 lib/wice/columns/column_processor_index.rb
wice_grid_ms-3.6.0 lib/wice/columns/column_processor_index.rb
wice_grid-3.6.0 lib/wice/columns/column_processor_index.rb
wice_grid-3.6.0.pre5 lib/wice/columns/column_processor_index.rb
wice_grid-3.6.0.pre4 lib/wice/columns/column_processor_index.rb
wice_grid-3.6.0.pre3 lib/wice/columns/column_processor_index.rb
wice_grid-3.6.0.pre2 lib/wice/columns/column_processor_index.rb
wice_grid-3.6.0.pre1 lib/wice/columns/column_processor_index.rb