method

render

Importance_0
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: FileField
render() public

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/file_field.rb, line 7
        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
Register or log in to add new notes.