Sha256: 7a98b1aa539602b72e5d9044672f01d26463838b15b599f48894f6aad09a035c

Contents?: true

Size: 698 Bytes

Versions: 75

Compression:

Stored size: 698 Bytes

Contents

# frozen_string_literal: true

module ActionView
  module Helpers
    module Tags # :nodoc:
      class FileField < TextField # :nodoc:
        def render
          include_hidden = @options.delete(:include_hidden)
          options = @options.stringify_keys
          add_default_name_and_id(options)

          if options["multiple"] && include_hidden
            hidden_field_for_multiple_file(options) + super
          else
            super
          end
        end

        private
          def hidden_field_for_multiple_file(options)
            tag("input", "name" => options["name"], "type" => "hidden", "value" => "", "autocomplete" => "off")
          end
      end
    end
  end
end

Version data entries

75 entries across 72 versions & 8 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/actionview-7.1.3.4/lib/action_view/helpers/tags/file_field.rb
actionview-8.0.1 lib/action_view/helpers/tags/file_field.rb
actionview-8.0.0.1 lib/action_view/helpers/tags/file_field.rb
actionview-7.2.2.1 lib/action_view/helpers/tags/file_field.rb
actionview-7.1.5.1 lib/action_view/helpers/tags/file_field.rb
actionview-7.0.8.7 lib/action_view/helpers/tags/file_field.rb
actionview-8.0.0 lib/action_view/helpers/tags/file_field.rb
actionview-7.2.2 lib/action_view/helpers/tags/file_field.rb
actionview-7.1.5 lib/action_view/helpers/tags/file_field.rb
actionview-8.0.0.rc2 lib/action_view/helpers/tags/file_field.rb
actionview-7.2.1.2 lib/action_view/helpers/tags/file_field.rb
actionview-7.1.4.2 lib/action_view/helpers/tags/file_field.rb
actionview-7.0.8.6 lib/action_view/helpers/tags/file_field.rb
actionview-8.0.0.rc1 lib/action_view/helpers/tags/file_field.rb
actionview-7.2.1.1 lib/action_view/helpers/tags/file_field.rb
actionview-7.1.4.1 lib/action_view/helpers/tags/file_field.rb
actionview-7.0.8.5 lib/action_view/helpers/tags/file_field.rb
actionview-8.0.0.beta1 lib/action_view/helpers/tags/file_field.rb
omg-actionview-8.0.0.alpha9 lib/action_view/helpers/tags/file_field.rb
omg-actionview-8.0.0.alpha8 lib/action_view/helpers/tags/file_field.rb