I have a table in the form with an attribute 'Table rows are selectable',user can select as many rows as possible,now in the PDF i am referring the same table name ,however i am not getting the checked rows column in the PDF?
Can any one help how to display the checked column in the PDF?
PDF table
Moderators: Jon, Steve, Ian, Dave
- Wai
- Moderator
- Posts: 165
- Joined: Wed Sep 12, 2007 9:04 am
- Location: Sandy, UK
- Contact:
Hi,
The Select column does not get displayed in the Print PDF.
What you could do is create your own select column instead of using the 'Table rows are selectable' option. Set your own column to be type boolean and display as checkbox.
You can then add the column to the table in the Print design. However, you will still not see the checkbox, but it will give you a tick in the column if it was selected on the form.
Hope that helps,
Thanks
The Select column does not get displayed in the Print PDF.
What you could do is create your own select column instead of using the 'Table rows are selectable' option. Set your own column to be type boolean and display as checkbox.
You can then add the column to the table in the Print design. However, you will still not see the checkbox, but it will give you a tick in the column if it was selected on the form.
Hope that helps,
Thanks
0 x
-
- Ebase User
- Posts: 1
- Joined: Wed Sep 18, 2013 9:12 am
Hello.
Although i have never encountered the same question with you,I'd like to suggest you a pdf processing control,which can process any pdf issues.You can have a try.Hope to help you.
Although i have never encountered the same question with you,I'd like to suggest you a pdf processing control,which can process any pdf issues.You can have a try.Hope to help you.
0 x
-
- Moderator
- Posts: 421
- Joined: Fri Sep 07, 2007 3:44 pm
- Location: Sandy, UK
- Contact:
Hi Joe,
If you are using Print Forms, then you cannot add select and delete columns to the PDF page. As Wai has suggested you would have to add your own columns.
But if you were to print the page using the outputpage option. This outputs the content of the page exactly as designed. So the select and delete columns will be added to the PDF as well. This can be invoked by:
FPL
or
JavaScript
or to just display the current page as a PDF:
Kind regards
Steve
If you are using Print Forms, then you cannot add select and delete columns to the PDF page. As Wai has suggested you would have to add your own columns.
But if you were to print the page using the outputpage option. This outputs the content of the page exactly as designed. So the select and delete columns will be added to the PDF as well. This can be invoked by:
FPL
Code: Select all
outputpage [as pdf] [save [<file location>] ] [nodisplay] [popup [<target window>] | inline] [report] [all | page name list..]
JavaScript
Code: Select all
var opts = new PdfOptions();
opts.display = true;
opts.save = true;
opts.filePath = "C:/temp/pdf123.pdf";
opts.pages = [pages.PAGE_2, pages.PAGE_4];
var fileName = form.generatePdf(opts);
Code: Select all
form.generatePdf();
Steve
0 x
Who is online
Users browsing this forum: No registered users and 3 guests