Sha256: 2eaaa006f6388fbe2bf78287b27f7721563b1afb345f75940a0aac9cd1735fac
Contents?: true
Size: 685 Bytes
Versions: 21
Compression:
Stored size: 685 Bytes
Contents
# encoding: UTF-8 module Wice #:nodoc: module Columns #:nodoc: COLUMN_PROCESSOR_INDEX = ActiveSupport::OrderedHash[ #:nodoc: :action , 'column_action', # Special processor for action column, columns with checkboxes :text , 'column_string', :string , 'column_string', :timestamp, 'column_datetime', :datetime , 'column_datetime', :date , 'column_date', :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
21 entries across 21 versions & 1 rubygems