Pregunta

I want to add a confirmation box before destroying an object in a controller. Basically, create the

data: {confirm: "You sure" }

but in a controller during object.destroy Thank you

¿Fue útil?

Solución

you can only interact with the user in the view layer, so you need to make that confirmation before you go into the destroy method

Otros consejos

You can warn the user by simply add the confirm option to the link, and it will pop up a window to notify the user, same as using alert function in javascript.

<%= link_to 'delete', delete_obj_path(obj), :method=>'delete', :confirm=>'You sure?'%>

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top