Tagged Questions
The cfdocument tag has no wiki summary.
4
votes
1answer
101 views
How to disable “AllowPrinting” for PDF generated in cfreport/cfdocument?
The business requirement says that the PDF cannot be printed.
I looked up the doc of cfreport, and it says for format="pdf", there is a permissions attribute that I can set to a list of permissions ...
3
votes
1answer
277 views
Adding a footer only to the last page when using cfdocument
I'm creating a multipage document using cfdocument (created using dynamic text so could have any number of pages even one).
I can use <cfdocumentitem type="footer"> to add a footer to every ...
3
votes
3answers
296 views
Saving the modified contents of a pdf
I've got a form that I downloaded, I'd like to prefill some content on the form (this is easy using cfpdfform).
Where it gets tricky is I would like to allow the user to modify the contents of that ...
3
votes
2answers
3k views
COLDFUSION: cfdocument and forcing a pagebreak
I am creating a dynamic PDF in ColdFusion and having an issue with "pagebreak". The page in question could have 1 record, or up to 60+ records. Each record is displayed in 2 rows of a table. Some ...
3
votes
2answers
3k views
How can I prevent page-break in CFDocument from occuring in middle of content?
I am generating a PDF file dynamically from html/css using the cfdocument tag. There are blocks of content that I don't want to span multiple pages.
After some searching I found that the style ...
2
votes
1answer
85 views
CFDOCUMENT creates PDF with different MD5 hashes for same input
I am using CFDOCUMENT to create a PDF in CF9.0.1. However with the same input each time I generate a new PDF using CFDOCUMENT the MD5 hash seems to be different.
Test code is simple:
<cfdocument ...
2
votes
1answer
210 views
How to make my app open png files?
When a user search for images in net and he/she is selecting it, i want my app to be registered to open it. This is what I have included but the app is not detecting image files!
<dict>
...
2
votes
2answers
589 views
save a cfdocument as an excel file
is there a workaround to use the cfdocument tag to save a page/file as an excel sheet instead of a PDF file?
I already have a process set up to make pdf files and email them out and would like to ...
1
vote
1answer
36 views
Railo cfdocument saveAsName has no effect
I've created a reporting application on Railo. The last step of this is to allow the users to download their reports. For this, they click on a link which takes them to /download.cfm?report=reportid
...
1
vote
1answer
128 views
Why is PDF created by CFDocument blank?
I have CFDocument generating a PDF. When the PDF opens, I can briefly see it as it should be. Then it disappears. Visibly gone anyway because I can find one of the images by clicking around, right ...
1
vote
1answer
499 views
Using cfdocument to generate PDF
The actual table is a lot larger than the mock-up one that I am going to show you but this mock-up one does explain the problem. Please go to http://www.monteandjanicechan.com/test_table.cfm
The ...
1
vote
2answers
537 views
CFDocument still cutting off the tops of text on some pages
when using cfdocument some of our pages have the top line cut off making it unreadable. I know there was a bug in 7, that was said to be fixed in 8. We're using 8,0,1,195765 and continue to have the ...
0
votes
0answers
38 views
CFPDForm and CFDocument
For some reason, I can't get CFDocument/CFPDFForm to work as advertised on the adobe website.
I have a PDF Form created in LiveCycle Designer, and when trying to embed this in a cfdocument, all I get ...
0
votes
2answers
220 views
image not displayed in cfdocument
I found a curios situation couple of days back which I was able to solve after losing a lot of temper.
Well the issue is I am placing an image inside a dynamically created pdf(using cfdocument). I ...
0
votes
1answer
59 views
Can a div be partially transparent in cfdocument pdfs? How?
Need a div to partially show the image behind it, is this even possible? Tried:
opacity:.5;
AND
filter:alpha(opacity=50);
Both produce a solid div.
Any help would be much appreciated.
0
votes
1answer
278 views
cfdocument inner html rendering at wrong scale
CF Version: 7,0,2,142559
<cfdocument pageheight="11"
pagewidth="8.5"
unit="in"
marginbottom=".7"
marginleft="0"
marginright="0"
...
0
votes
5answers
557 views
ColdFusion - converting HTML webpage to Word or PDF document
I have a webpage, where user has a possible to Print this page OR to save it on his/her computer.
How may I save it as a Word or PDF document?
Thanks.
0
votes
1answer
406 views
targetting a new page for a link on a pdf
I've got a html form submitting to a pdf using cfdocument.
Within that pdf, I have a link at the bottom that goes to another policy. I need that link to open up on a new page, rather than _self.
...