I am trying to create a destroy link to my users controller, I am also using devise.

Here is my code -

View

<%= link_to 'Delete User?', child, :confirm => "Are you sure you want to delete #{child.full_name}?", :method => :delete, :class => "user-additional", :style => "font-size:12px;font-weight:normal;" %>

Controller

def destroy
 if @user = User.find(params[:id])
  @user.destroy
  respond_to do |format| 
    format.html { redirect_to account_index_path } 
    format.xml { head :ok } 
  end
 end
end

Routes

devise_for :users 
resources :users, :except => [:new]

The link translates to localhost:3000/users/10

When clicked this opens the users show instead of deleting them

Any ideas ?

link|improve this question

79% accept rate
Do you know if the link is using a GET or DELETE request? I know you have method specified there, but when you say the link resolves to localhost:3000/users/10, that could mean a couple of things. You can check by using an inspection tool like Firebug or Chrome Inspector. – A. Wilson Jan 5 '11 at 17:23
Is JavaScript enabled? Is the rails.js file included in the application layout file? What about the prototype JS lib? If jQuery and prototype JS libs are being used, try using only prototype? – Zabba Jan 5 '11 at 17:35
feedback

5 Answers

up vote 14 down vote accepted

Destructive actions should be performed as a form submission - http://www.w3.org/2001/tag/doc/whenToUseGet.html#checklist

use button_to (passing a :method of :delete) instead and style the button appropriately.

link|improve this answer
THANKS! For the help, solved it – Alex Jan 5 '11 at 17:40
feedback

In case that you are using jQuery instead of Prototype, you are probably missing a javascript file.

You can find details on how to add it to your project from the jquery-ujs GitHub page or from episode 205 of the Railscasts.

link|improve this answer
+1 despite this not being marked 'correct', it pointed me towards ujs, which was the last thing I need to ditch prototype for jQuery. Thanks! – Filip Apr 19 '11 at 18:00
feedback

Actually I just had the exactly same problem yesterday

Try this <%= button_to "delete", your_object, :method=>:delete, :class=>:destroy %>

It works (for me at least)

link|improve this answer
feedback

At a guess I think it is because in Rails 3, unobtrusive javascript is now used for functionality such as this (Rails 2 would output a bunch of nasty inline javascript for your code, Rails 3 puts the javascript in an external file, and uses HTML5 data- attributes to interact with that.)

To solve this you need to include <%= csrf_meta_tag %> in your page header to reference the external javascript. It also deals with XSS issues.

Some details here: http://www.themodestrubyist.com/2010/02/24/rails-3-ujs-and-csrf-meta-tags/

link|improve this answer
I dont think its the js I just tried this - <%= link_to 'Delete User?', child, :method => :delete %> and no luck – Alex Jan 5 '11 at 17:24
feedback

If you are using jQuery, make sure you have something like this:

<script type="text/javascript">
  // this allows jquery to be called along with scriptaculous and YUI without any conflicts
  // the only difference is all jquery functions should be called with $j instead of $
  // e.g. $jQ('#div_id').stuff instead of $('#div_id').stuff
  var $jQ = jQuery.noConflict();
</script>
link|improve this answer
assignin it to jQ didnt work for me, I just called jQuery.noConflict(); and then I would use it like jQuery(document) instead of $(document) more info here: yehudakatz.com/2007/01/31/using-jquery-in-rails-part-i – marimaf May 4 at 3:37
using the jQ=JQuery.noConflict(); makes jQuery available from $jQ instead of using $, which helps making calls to jQuery and javascript/ajax not conflict with each other. I had this same issue, and this line of code made my delete link work again. Maybe your problem was somewhere else. – chech May 7 at 15:48
it did solve my problem. The only thing I was pointing out was that using $jQ didn't work for me. – marimaf May 7 at 16:19
looks like my fault, I misstyped the variable name, it should be: var $jQ = jQuery.noConflict(); I'll edit the post and correct it, thanks for pointing it out. – chech May 7 at 16:31
feedback

Your Answer

 
or
required, but never shown

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