Reputation: 14798
I need to remove hidden id field that is being generated for existing records by fields_for method. Any idea how do do that?
fields_for
Upvotes: 17
Views: 4641
Reputation: 5508
From the docs:
f.fields_for(:comments, :include_id => false)
Upvotes: 48