The following XSL-FO section is not being rendered properly by Aspose.Pdf PdfGenerator.BindFO(xmlStream, xsltStream)
It is rendering the content but it isn't rendering the table borders and thus the content is not being held in inside the table bounds.
How can I make the table render with borders and format the content properly?
This is the resulting xml from the xslt:
<fo:table width="100%" table-layout="fixed">
<fo:table-column column-width="3in" />
<fo:table-column column-width="4in" />
<fo:table-body>
<fo:table-row>
<fo:table-cell border-width="1px" border-style="solid" padding-right="2px" padding-left="2px">
<fo:block text-align="right" font-weight="bold">Site:</fo:block>
</fo:table-cell>
<fo:table-cell border-width="1px" border-style="solid" padding-right="2px" padding-left="2px">
<fo:block id="59327">CEC #1</fo:block>
</fo:table-cell>
</fo:table-row>
<fo:table-row>
<fo:table-cell border-width="1px" border-style="solid" padding-right="2px" padding-left="2px">
<fo:block text-align="right" font-weight="bold">Subject Identifier:</fo:block>
</fo:table-cell>
<fo:table-cell border-width="1px" border-style="solid" padding-right="2px" padding-left="2px">
<fo:block id="138951">001</fo:block>
</fo:table-cell>
</fo:table-row>
<fo:table-row>
<fo:table-cell border-width="1px" border-style="solid" padding-right="2px" padding-left="2px">
<fo:block text-align="right" font-weight="bold">Status:</fo:block>
</fo:table-cell>
<fo:table-cell border-width="1px" border-style="solid" padding-right="2px" padding-left="2px">
<fo:block>Enrolled</fo:block>
</fo:table-cell>
</fo:table-row>
<fo:table-row>
<fo:table-cell border-width="1px" border-style="solid" padding-right="2px" padding-left="2px">
<fo:block text-align="right" font-weight="bold">Timezone:</fo:block>
</fo:table-cell>
<fo:table-cell border-width="1px" border-style="solid" padding-right="2px" padding-left="2px">
<fo:block>Pacific Standard Time</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>