Hi there, I have a working Prawnto implementation, except for in IE versions 6 - 8. Here's my print method:
prawnto :inline => false, :filename => @purchase.deal.name + "-" + @purchase.customer.name+".pdf", :prawn => {:skip_page_creation=>true}
This works fine on Safari, FF and Chrome. You know, the sane browsers.
But on IE, the browser attempts to download the id number of the record; the URL looks like this:
https://domain.com/customers/print/24?format=pdf
It says "cannot download file '24'".
Any idea what I should be doing here?
Thanks, Aaron.