Flowdock
method

hidden_field_for_checkbox

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 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 59
          def hidden_field_for_checkbox(options)
            @unchecked_value ? tag("input", options.slice("name", "disabled", "form").merge!("type" => "hidden", "value" => @unchecked_value, "autocomplete" => "off")) : "".html_safe
          end
Register or log in to add new notes.