Regarding formatting done in Xsl FOO

2019-08-22 17:06发布

I have got the solution to the problem, want to thank you all you guys since without your timely solutions and advise this was impossible to achieve and solve thanks a lot..!!

A solution to this problem have been achieved thanks a lot..!!

标签: xml xslt
1条回答
We Are One
2楼-- · 2019-08-22 17:51

Try this property `keep-with-next="always"

<fo:table-header>
   <fo:table-row keep-with-next="always">
         <fo:table-cell>
               <fo:block font-weight="bold"></fo:block>
          </fo:table-cell>
           <fo:table-cell>
              <fo:block text-align="left" space-after="4mm"
                  space-before="3mm" font-weight="bold">
                  <xsl:text>DEPARTMENT TOTALS</xsl:text>
               </fo:block>
           </fo:table-cell>
    </fo:table-row>
</fo:table-header>
查看更多
登录 后发表回答