Flowdock
fields_for_nested_model(name, object, options, block) 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_helper.rb, line 1283
        def fields_for_nested_model(name, object, options, block)
          object = object.to_model if object.respond_to?(:to_model)

          options[:hidden_field_id] = object.persisted?
          @template.fields_for(name, object, options, &block)
        end
Register or log in to add new notes.