aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/tags/check_box.rb
Commit message (Collapse)AuthorAgeFilesLines
* check_box value can be not only an object of Array classVasiliy Ermolovich2012-10-201-3/+5
| | | | there is a chance that `value` is a Set or an object that reponses to `include?` method so let's handle this case
* Change check_box to work inverting the checked and unchecked valueRafael Mendonça França2012-04-291-4/+2
| | | | | | | | | | This fixes: * Boolean with inverted logic * Integer with inverted logic * BigDecimal with inverted logic Fixes #3995
* add include_hidden option to checkbox tagSergey Nartimov2012-03-131-2/+8
|
* Replicate :form html5 attribute to hidden field for check_boxCarlos Antonio da Silva2012-02-021-1/+5
| | | | | When the new html5 attribute :form is given to the check_box helper, it should be replicated to the hidden field as well. Closes #4848
* check_box with nil as unchecked value should be HTML safeRafael Mendonça França2012-01-311-1/+1
| | | | [Carlos Antonio da Silva + Rafael Mendonça França]
* Extract input_checked? to a moduleRafael Mendonça França2012-01-171-0/+4
|
* Remove code duplication between CheckBox ans RadioButtonRafael Mendonça França2012-01-171-9/+3
|
* Extract RadioButtonRafael Mendonça França2012-01-171-4/+0
|
* Extract CheckBoxRafael Mendonça França2012-01-171-0/+60