Sha256: 305a911d7d9a37ad9e4f5a53b089b4661d89337e75de1fdf41b46cc3546d1bfd
Contents?: true
Size: 1.47 KB
Versions: 6
Compression:
Stored size: 1.47 KB
Contents
# encoding: UTF-8 module Wice module Columns #:nodoc: class ViewColumnAction < ViewColumn #:nodoc: def initialize(grid_obj, html, param_name, select_all_buttons, object_property, view, block = nil) #:nodoc: @view = view @select_all_buttons = select_all_buttons self.grid = grid_obj self.html = html Wice::WgHash.add_or_append_class_value!(self.html, 'sel') grid_name = self.grid.name @param_name = param_name @cell_rendering_block = lambda do |object, params| if block && ! block.call(object) '' else selected = params[grid_name] && params[grid_name][param_name] && params[grid_name][param_name].index(object.send(object_property).to_s) check_box_tag("#{grid_name}[#{param_name}][]", object.send(object_property), selected, id: nil) end end end def in_html #:nodoc: true end def capable_of_hosting_filter_related_icons? #:nodoc: false end def name #:nodoc: return '' unless @select_all_buttons content_tag(:div, '', class: 'clickable select-all', title: NlMessage['select_all']) + ' ' + content_tag(:div, '', class: 'clickable deselect-all', title: NlMessage['deselect_all']) end end ConditionsGeneratorColumnAction = ConditionsGeneratorColumn #:nodoc: end end
Version data entries
6 entries across 6 versions & 1 rubygems