Flowdock
method

hidden_field_for_checkbox

Importance_0
v4.2.7 - Show latest stable - 0 notes - Class: CheckBox
hidden_field_for_checkbox(options) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionview/lib/action_view/helpers/tags/check_box.rb, line 58
        def hidden_field_for_checkbox(options)
          @unchecked_value ? tag("input", options.slice("name", "disabled", "form").merge!("type" => "hidden", "value" => @unchecked_value)) : "".html_safe
        end
Register or log in to add new notes.