It is because of a misplaced right parenthisis. De resulting link from the 
link_to was like
<a href="....?remote=true">......
and no data-remote attribute was given.

Clearly,
<%= link_to factuur.nummer, toon_facturen_path( :id => factuur.id,
                                            :format => :js,
                                            :remote => true*)* %></td>

should have been
<%= link_to factuur.nummer, toon_facturen_path( :id => factuur.id,
                                            :format => :js*)*,
                                            :remote => true %></td>

Thank you all for your time, Ruud

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rubyonrails-talk/84669f88-163c-49cb-97ff-4986620148b4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to