Any one have a way to print a dashed line every 5 rows?
I have a pdf report I did for Cost of goods sold, but usually when I do a report i like to have a dashed line every 5 rows.
It is a fo.ftl.
If any one has done something like this let me know I would appreciate a how to.
I guess when I am loading my list I could put a flag or something every 5 rows and deal with it in the FTL, but maybe there is a way to know the row or something inside a list element for ftl?
Also not 100% sure how to get a dashed line I got a solid line looking at the footer in simple.
<fo:table-row>
<fo:table-cell number-columns-spanned="9">
<fo:block text-align="center" border-top="thin solid black" padding="3pt"></fo:block>
</fo:table-cell>
</fo:table-row>
Joel Fradkin