Publisher RTF - Format Empty Table Cell
Hello,
I have created several Templates with the BI Publisher Word Desktop Plugin. How can I define the format for emtpy table cells. For example for optional fields. For these fields the format options are missing after report generation.
I've tested it with the following XSL-FO Code.
That did the job:
<fo:block orphans="2" widows="2" linefeed-treatment="preserve" start-indent="0.0pt" text-align="end" padding-bottom="3.0pt" end-indent="0.0pt" padding-top="3.0pt">
<fo:inline style-name="Normal" height="9.0pt" font-size="9.0pt" font-family-generic="swiss" font-family="Arial" white-space-collapse="false" font-weight="bold">0</fo:inline>
</fo:block>
Without the "0" the layout information will be ignored:
<fo:block orphans="2" widows="2" linefeed-treatment="preserve" start-indent="0.0pt" text-align="end" padding-bottom="3.0pt" end-indent="0.0pt" padding-top="3.0pt">
I have created several Templates with the BI Publisher Word Desktop Plugin. How can I define the format for emtpy table cells. For example for optional fields. For these fields the format options are missing after report generation.
I've tested it with the following XSL-FO Code.
That did the job:
<fo:block orphans="2" widows="2" linefeed-treatment="preserve" start-indent="0.0pt" text-align="end" padding-bottom="3.0pt" end-indent="0.0pt" padding-top="3.0pt">
<fo:inline style-name="Normal" height="9.0pt" font-size="9.0pt" font-family-generic="swiss" font-family="Arial" white-space-collapse="false" font-weight="bold">0</fo:inline>
</fo:block>
Without the "0" the layout information will be ignored:
<fo:block orphans="2" widows="2" linefeed-treatment="preserve" start-indent="0.0pt" text-align="end" padding-bottom="3.0pt" end-indent="0.0pt" padding-top="3.0pt">
0