i'm trying to delete each single image uploaded for a model (work has many images) but now my code works like this: i have three images uploaded in a work, i want to delete just one but when i check the image's chackbox and submit the update action it will delete all the three images.

here is my work model's code:

  before_save :destroy_image?

  belongs_to :category
  has_many :images, :as => :assetable, :class_name => "Work::Image", :dependent =>    :destroy

  accepts_nested_attributes_for :images, :reject_if => proc { |attributes| attributes['attachment'].blank? }

  def image_delete
    @image_delete ||= "0"
  end

 def image_delete=(value)
   @image_delete = value
 end

private
   def destroy_image?
    self.images.clear if @image_delete == "1"
   end


end


class Work::Image < Asset
   has_attached_file :attachment, :styles => {:small => "200x150>", :large =>    "400x300>"},
:url  => "/uploads/works/:id/:style/:basename.:extension",
:path => ":rails_root/public/uploads/works/:id/:style/:basename.:extension"

end

i think the problem is that delete all images

self.images.clear if @image_delete == "1"

but i don't understad how to fix it. i hope in your help. thanks.

link|improve this question

71% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You should use the :allow_destroy options of accepts_nested_attributes_for instead.

And in your form something like this:

<% @work.images.each do |image| %>
  <%= f.fields_for :images, image do |image_fields| %>
    <%= image_tag image.url(:small) %>
    <%= image_fields.check_box :_destroy %>
  <% end %>
<% end %>
link|improve this answer
yes i use already :allow_destroy in work model and in the form view i got this <%- @work.images.each do |image| %> <%= image_tag image.url(:small) %> <%= f.check_box(:image_delete) %> <% end %> – davelab Jun 1 '11 at 12:55
You don't need these image_delete stuffs at all. :allow_destroy will destroy the records for you. I've updated the view in the answer to fit yours. – Michaël Witrant Jun 1 '11 at 13:09
you are right! i change my model with accepts_nested_attributes_for :images, :allow_destroy => true, :reject_if => proc { |attributes| attributes['attachment'].blank? } and my view in <%- @work.images.each do |image| %> <%= fields_for :images, image do |image_fields| %> <%= image_tag image.url(:small) %> <%= image_fields.check_box :attachment_delete %> <% end %> <% end %> but i got this error: undefined method 'attachment_delete' – davelab Jun 1 '11 at 13:22
There was an error. The field is :_destroy as mentioned in the doc. I fixed the answer. – Michaël Witrant Jun 1 '11 at 17:09
anythings happen when i check the image to delete and submit request rails says successfull update but nothings change, i try to set :destroy instead :_destroy and it give me this error undefined method to_i`, can you tell me why? thanks – davelab Jun 2 '11 at 10:22
show 11 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.