I have a table that is 8 cols by many rows.
TABLE ISSUE I
The column "ItemDesc" is left aligned. BUT on occasion, the ItemDesc
begins with 4 leading spaces. In my output .PDF, the leading spaces are
always removed.
How can I force the leading spaces in the ItemDesc to be included in the
output? Here is what I currently have for the field:
<fo:table-cell>
<fo:block>
<xsl:attribute name="white-space-collapse">false</xsl:attribute>
<xsl:value-of select="itemdesc"/>
</fo:block>
</fo:table-cell>
TABLE ISSUE II
Of the 8 columns in my table, I only need to print 5 of them. The other
3 cols are used to evaluate the record and evaluate data using "test".
My problem is that It seems that once the table is defined and values
selected, you have no choice but to print the value.
How can I keep populated objects in a table from printing?
Thanks for your assistance.
Jeff