With the latest release, empty cells in tables seem to never get borders
around them. I have tried everything that I can think of to make borders
appear around them, but they never show up. How can I do this? I really
need empty cells to have borders in a lot of my tables. I have tried:
table.setDefaultBorderWidth(1);
table.setDefaultCellBorder(Cell.TOP | Cell.BOTTOM | Cell.LEFT | Cell.RIGHT);
table.addCell(new Phrase(" "));
Cell emptyCell = new Cell(" ");
emptyCell.setBorderWidth(1);
emptyCell.setBorder(Cell.TOP | Cell.BOTTOM | Cell.LEFT | Cell.RIGHT);
table.addCell(emptyCell);
Previously, all of these would result in an empty cell with a border around
it. But, not any more. What am I missing?
Thanks!
John
_______________________________________________
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions