Here my code rendering pdf is ok .But I don't want render directly save to the rails folder how?

Help me please

respond_to do |format|
  format.html   # show.html.erb
  format.xml    { render :xml => @claim }
  format.report { render_report }
  format.xls    { render_report }
  format.pdf    { render :layout => false }
end
link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

I'm not sure if I understood well... if you want to have downloadable pdf, you could do something like this:

format.pdf {send_data your_pdf, :type => 'application/pdf'}

You didn't say which version of rails are you using, but in general methods send_data and send_file could be usefull for you (links are to v 2.3.8, but of course those methods exist in newer versions).

link|improve this answer
I am using Rails 3 – shyam Sep 29 '11 at 4:43
format.pdf { send_data "#{@claim.id}".pdf, :type => 'application/pdf' } – shyam Sep 29 '11 at 4:52
It showing error like pdf method error – shyam Sep 29 '11 at 5:05
your_pdf in send_data should be a binary data, if you have path_to_your_file, you should do format.pdf {send_file path_to_your_file, :type => 'application/pdf'} – santuxus Sep 29 '11 at 8:52
in your case: format.pdf { send_file "#{@claim.id}.pdf", :type => 'application/pdf' } - '.pdf' should be inside quotation – santuxus Sep 29 '11 at 8:53
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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