Sha256: 20f3766dadd67d32570aa6498ffefbc5397e28a40a5396ab5e50877bee2c47dd
Contents?: true
Size: 1.35 KB
Versions: 9
Compression:
Stored size: 1.35 KB
Contents
# encoding: utf-8 module Wice module Columns #:nodoc: class ViewColumnBoolean < ViewColumnCustomDropdown #:nodoc: include ActionView::Helpers::FormOptionsHelper # Text for the true value attr_accessor :boolean_filter_true_label # Text for the false value attr_accessor :boolean_filter_false_label def render_filter_internal(params) #:nodoc: @custom_filter = { @filter_all_label => nil, @boolean_filter_true_label => 't', @boolean_filter_false_label => 'f' } @turn_off_select_toggling = true super(params) end end class ConditionsGeneratorColumnBoolean < ConditionsGeneratorColumn #:nodoc: def generate_conditions(table_alias, opts) #:nodoc: unless opts.is_a?(Array) && opts.size == 1 Wice.log "invalid parameters for the grid boolean filter - must be an one item array: #{opts.inspect}" return false end opts = opts[0] if opts == 'f' [" (#{@column_wrapper.alias_or_table_name(table_alias)}.#{@column_wrapper.name} = ? or #{@column_wrapper.alias_or_table_name(table_alias)}.#{@column_wrapper.name} is null) ", false] elsif opts == 't' [" #{@column_wrapper.alias_or_table_name(table_alias)}.#{@column_wrapper.name} = ?", true] end end end end end
Version data entries
9 entries across 9 versions & 2 rubygems