Method: Lev::FormBuilder#check_box
- Defined in:
- lib/lev/form_builder.rb
#check_box(method, options = {}, checked_value = "1", unchecked_value = "0") ⇒ Object
16 17 18 19 20 |
# File 'lib/lev/form_builder.rb', line 16 def check_box(method, = {}, checked_value = "1", unchecked_value = "0") [:checked] = true if get_form_params_entry(method).to_i > 0 mark_error_if_present(method, ) super(method, , checked_value, unchecked_value) end |