Skip to content
This repository has been archived by the owner on Dec 12, 2021. It is now read-only.

How To: Custom nested form builders

lest edited this page Aug 15, 2012 · 5 revisions
def custom_nested_form_for(object, *args, &block)
  options = args.extract_options!
  form_for(object, *(args << options.merge(:builder => CustomNestedFormBuilder)), &block)
end
class CustomNestedFormBuilder < ActionView::Helpers::FormBuilder
  include NestedForm::BuilderMixin
end