Method: Edgarj::FormDrawer::Search#draw_boolean
- Defined in:
- app/helpers/edgarj/form_drawer.rb
#draw_boolean(col) ⇒ Object
overwrite because it is totally different from checkbox on search.
290 291 292 293 294 295 296 297 |
# File 'app/helpers/edgarj/form_drawer.rb', line 290 def draw_boolean(col) _draw_head(col){ @f.select(col.name, [ ['(both)', ''], ['', 'false'], ['√', 'true']]) } end |