I'm trying to generate a PDF with table that contains cells with shapes.
I override CellRenderer
class and inside the new class I draw shapes in DrawableCellRenderer#draw
.
Sometimes when the table needs to split and the cell has row span I want to prevent it from splitting and to begin in the next page.
I tried to setKeepTogether(true)
but it didn't worked. Nested tables didn't work as well.
Here is the code I use:
public void test2() {
try {
pdfDocument = new PdfDocument(new PdfWriter(filePath));
document = new Document(pdfDocument);
Table masterTable = new Table(2).setExtendBottomRowOnSplit(true);
masterTable.addHeaderCell(new Cell().add(new Paragraph("icon")))
.addHeaderCell(new Cell().add(new Paragraph("i")));
int rowSpan = 15;
for(int i = 0; i < 50; i++) {
Cell cell = new Cell(rowSpan, 1);
cell.setNextRenderer(new DrawableCellRenderer(cell, SOME_SHAPE));
cell.setKeepTogether(true);
masterTable.addCell(cell);
for(int j = 0; j < rowSpan; j++) {
cell = new Cell();
cell.add(new Paragraph(i + ", " + j));
masterTable.addCell(cell);
}
}
document.add(masterTable);
} catch (FileNotFoundException e) {
ErrorMessage.outPrintln(ErrorMessage.DEBUG,
e.getMessage());
} finally {
pdfDocument.close();
}
}
This code should achieve what you want more or less. It requires for your to set the fixed column width though
Result looks like this:
There is an artifact of two sequential borders not being collapsed though: