method

html_options_for_form

Importance_0
Ruby on Rails latest stable (v2.3.4) - 0 notes - Class: ActionView::Helpers::FormTagHelper
html_options_for_form(url_for_options, options, *parameters_for_url) private

No documentation

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

Hide source
# File actionpack/lib/action_view/helpers/form_tag_helper.rb, line 439
        def html_options_for_form(url_for_options, options, *parameters_for_url)
          returning options.stringify_keys do |html_options|
            html_options["enctype"] = "multipart/form-data" if html_options.delete("multipart")
            html_options["action"]  = url_for(url_for_options, *parameters_for_url)
          end
        end
Register or log in to add new notes.