method
form_tag_with_body
v4.2.9 -
Show latest stable
- Class:
ActionView::Helpers::FormTagHelper
form_tag_with_body(html_options, content)private
No documentation available.
# File actionview/lib/action_view/helpers/form_tag_helper.rb, line 864
def form_tag_with_body(html_options, content)
output = form_tag_html(html_options)
output << content
output.safe_concat("</form>")
end