如果debit大于1000,当前单元格背景设置为红色
<?if:debit>1000?><xsl:attribute xdofo:ctx="block" name="background-color">red</xsl:attribute><?end if?>
当前单元格文本对齐方式
<?split-column-data:TestScore?><xsl:attribute name="text-align"><?@align?></xsl:attribute><?ScoreValue?>
实现隔行变色
<?if@row:position() mod 2=0?> <xsl:attribute name="background-color" xdofo:ctx="incontext">lightgray</xsl:attribute><?end if?>
按条件显示
父介取值
判断是否最后一行
<?if:position()!=last()?><?split-by-page-break:?><?end if?>
数值格式化,解决小数点 现成D ,U 等。。。
<?format-number(unit_price,'#,##0.##','GBP')?>
设置表格行高度等
<xsl:attribute name="height" xdofo:ctx="incontext">20px</xsl:attribute>
来源:CSDN
作者:leeyon4151
链接:https://blog.csdn.net/leeyon4151/article/details/7204413