I’m rendering a partial using a collection:
<%=render(:partial=> ‘record’, :collection => @records)%>
Inside the partial, I’m attempting to create a new form for each row,
generating elements like the following example:
<%= text_field “record”, “name” %>
However, though my objects are fully populated, these form tags ignore
the values completely. Is this due to a scope issue? Can this be
resolved?