Displaying 1 result from an estimated 1 matches for "internal_value".
2009 Jun 20
0
AssociationTypeMismatch
...%><br />
<%=
#@decodes = Decode.find(:all, :conditions => {:name =>
"Chapter_Type", :is_active => 1 })
@decodes = Decode.all(:conditions => {:name =>
"Chapter_Type", :is_active => 1 })
chapter_form.collection_select :chapter_type,
@decodes, :internal_value, :display_value, :prompt => ''Select module
type''
%>
</p>
<p>
<%= chapter_form.submit ''Create'' %>
</p>
<% end %>
<%= link_to ''Back'', chapters_path %>
Controller:
---------------
class Chapt...