#1
|
|||
|
|||
![]()
I need suggestions, please.
How does one create the table in the attached PDF from the data in the attached spreadsheet? I planned on using a XDF file to drive the data into the tables. The spreadsheet could be 100-1000 or more records, resulting in a multipage book. Note the data is flowing in columns (not rows) on the PDF. The bottom half of the PDF should be the next 6 records (not repeated like it shows in the example) How do I get the "rows" on the spreadsheet into run in groups of 6 columns: rows 1-6 on the top, rows 6-12 on the bottom. The images, I think using an using external path to pull images into individual graphic frames above the table will work. The images do not have to be included in the table. |
#2
|
||||
|
||||
![]()
I got this to work with the following OnRecordStart rule:
Code:
if (FusionPro.Composition.inputRecordNumber != 1) FusionPro.Composition.composeThisRecord = false; var data = new ExternalDataFileEx(PrimaryInputFile()); var numModels = Math.min(6, data.recordCount); var numProps = data.fieldCount; var table = new FPTable(); table.AddColumn(14000); for (var c = 0; c < numModels; c++) table.AddColumn(6700); for (var r = 0; r < numProps; r++) { var row = table.AddRow(); for (var c = 0; c <= numModels; c++) { var cell = row.Cells[c]; cell.Content = TaggedTextFromRaw(data.GetFieldValue(c, r - 1)); if (r == 0) cell.Content = c ? '<graphic file="' + data.GetFieldValue(c, "Image URL") + '" width=3500>' : ""; cell.SetBorders("Thin", "Black", "Top", "Bottom", "Left", "Right"); cell.Margins = {Top:10, Bottom:10, Left:20, Right:20}; cell.HAlign = c ? "Center" : "Right"; //cell.VAlign = "Middle"; cell.Bold = c == 0 || r == 1; } } var result = table.MakeTags(); FusionPro.Composition.AddVariable("table", result, true); return result; You'll have to make some adjustments to get exactly what you want, but that should get you started.
__________________
Dan Korn FusionPro Developer / JavaScript Guru / Forum Moderator PTI Marketing Technologies | Printable | MarcomCentral I am a not a Support engineer, and this forum is not a substitute for Support. My participation on this forum is primarily as a fellow user (and a forum moderator). I am happy to provide help and answers to questions when I can; however, there is no guarantee that I, or anyone else on this forum, will be able to answer all questions or fix any problems. If I ask for files to clarify an issue, I might not be able to look at them personally. I am not able to answer private messages, emails, or phone calls unless they go through proper Support channels. Please direct any sales or pricing questions to your salesperson or inquiries@marcom.com. Complex template-building questions, as well as all installation and font questions or problems, should be directed to FusionProSupport@marcom.com. Paid consulting work may be required to fulfill your template-building needs. This is a publicly viewable forum. Please DO NOT post fonts, or other proprietary content, to this forum. Also, please DO NOT post any "live" data with real names, addresses, or any other personal, private, or confidential data. Please include the specific versions of FusionPro, Acrobat, and your operating system in any problem reports or help requests. I recommend putting this information in your forum signature. Please also check your composition log (.msg) file for relevant error or warning messages. Please post questions specific to the MarcomCentral Enterprise and Web-to-Print applications in the MarcomCentral forum. Click here to request access. Or contact your Business Relationship Manager (BRM/CPM) for assistance. Please direct any questions specific to EFI's Digital StoreFront (DSF) to EFI support. How To Ask Questions The Smart Way The correct spellings are JavaScript, FusionPro, and MarcomCentral (each with two capital letters and no spaces). Acceptable abbreviations are JS, FP, and MC (or MCC). There is no "S" at the end of "Expression" or "Printable"! The name of the product is FusionPro, not "Fusion". "Java" is not is not the same as JavaScript. Check out the JavaScript Guide and JavaScript Reference! FusionPro 8.0 and newer use JavaScript 1.7. Older versions use JavaScript 1.5. return "KbwbTdsjqu!spdlt\"".replace(/./g,function(w){return String.fromCharCode(w.charCodeAt()-1)}); ![]() |
#3
|
|||
|
|||
![]()
Dan, this is awesome!
I apologize for the delay. Your code was essential to getting me started on this! We have been expanding upon it to allow for overflow pages and styling. It is working beautifully. Thank you so much. |
![]() |
Tags |
columns, table |
Thread Tools | Search this Thread |
Display Modes | |
|
|