Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

cocoon, link_to_remove_association with confirm?

is there an easy way to add confirm dialog box that would appear when user clicks link_to_remove_association ?

cocoon gem is really great, I wonder if it has such a ready option ?? if not, can I use jQuery to cancel or let go the event ?

Thanks,

like image 241
simo Avatar asked Dec 28 '22 00:12

simo


2 Answers

You should be able to simply <%= link_to_remove_association 'Remove', f, data: { confirm: 'Are you sure that you want to remove these nested fields?' } %>, no?

like image 165
Micah Alcorn Avatar answered Jan 25 '23 07:01

Micah Alcorn


  = link_to_remove_association "remove item", f,  data: {confirm: 'Are you sure?'}

tested working :)

like image 33
Kostafun Avatar answered Jan 25 '23 08:01

Kostafun