I solved this. This is what I am doing in my update function now:

@params[:carrier].each do |id, data|
carrier = HhActiveCarrier.find(id)
carrier.update_attributes(data)

I also removed:

for carrier in @carriers
    country = carrier["country"]
    if country.nil?
        carrier["country"] = "none"
    end
end

from my index function and changed my select to this:

<td class="tn"><%= f.select :country, @countries, { :include_blank => 
true } %></td>

-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to