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 1461
        def fields_for_nested_model(name, object, options, block)
          object = convert_to_model(object)

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