class Renderer::Checkbox
Public Instance Methods
checkbox?()
click to toggle source
# File lib/tabulatr/renderer/checkbox.rb, line 33 def checkbox?() true end
coltype()
click to toggle source
# File lib/tabulatr/renderer/checkbox.rb, line 31 def coltype() 'checkbox' end
column?()
click to toggle source
# File lib/tabulatr/renderer/checkbox.rb, line 32 def column?() false end
full_name()
click to toggle source
# File lib/tabulatr/renderer/checkbox.rb, line 34 def full_name() 'checkbox' end
human_name()
click to toggle source
# File lib/tabulatr/renderer/checkbox.rb, line 27 def human_name check_box_tag('mark_all', '1', false, class: 'tabulatr_mark_all').html_safe end
value_for(record, view)
click to toggle source
# File lib/tabulatr/renderer/checkbox.rb, line 35 def value_for(record, view) nil end