I'm trying to use fo:table-and-caption withTelerik.Apoc.ApocDriver
(Render)
Without the "
But with it, I get nothing (no error and no table)
Is this tag not supported by the generator?
(I need a table title that will stick on the same page)
Thanks
Without the "
<fo:table-and-caption>" tag, my table generate.But with it, I get nothing (no error and no table)
Is this tag not supported by the generator?
(I need a table title that will stick on the same page)
Thanks
<fo:table-and-caption> <fo:table border="1pt solid black"> <fo:table-column column-width="25mm"/> <fo:table-column column-width="25mm"/> <fo:table-header> <fo:table-row> <fo:table-cell> <fo:block font-weight="bold">title</fo:block> </fo:table-cell> </fo:table-row> </fo:table-header> <fo:table-body> <fo:table-row> <fo:table-cell> <fo:block>val 1</fo:block> </fo:table-cell> </fo:table-row> <fo:table-row> <fo:table-cell> <fo:block>val 2</fo:block> </fo:table-cell> </fo:table-row> </fo:table-body> </fo:table></fo:table-and-caption>