Displaying 2 results from an estimated 2 matches for "bradwr".
Did you mean:
brader
2009 Apr 04
2
NoMethodError in PublicController
Hello,
I''m following a tutorial with a public controller, line_item model,
and cart model. When I try to add an item to the cart I am getting an
error
NoMethodError in PublicController#add_to_cart
You have a nil object when you didn''t expect it!
You might have expected an instance of Array.
The error occurred while evaluating nil.<<
Here is my code
2009 Mar 11
1
NoMethodError for select_tag
Hello there. I am following a tutorial with rails 2.1 and I have come
across a problem where
<%= f.label :artist_id %><br />
<%= f.select_tag(:artist_id, options_for_select([[''choose one'',
'''']] + @artists.collect {|art| [art.name, art.id]}, @album.artist_id))
%> (Old artist info:<%= @album.artist_old%>)
gives
undefined method