Flowdock
method

hidden_field

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: CollectionCheckBoxes

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v4.2.9) is shown here.

These similar methods exist in v6.1.7.7:

hidden_field() 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/collection_check_boxes.rb, line 43
        def hidden_field
          hidden_name = @html_options[:name]

          hidden_name ||= if @options.has_key?(:index)
            "#{tag_name_with_index(@options[:index])}[]"
          else
            "#{tag_name}[]"
          end

          @template_object.hidden_field_tag(hidden_name, "", id: nil)
        end
Register or log in to add new notes.