How do I shade every 3rd Line?
Is there a way to do conditional formatting (or equivalent) that would shade every 3rd line in a table (that is part of a repeating section).
I'm using BIP-Embedded (via WORD)
You can use below condition just after for-each
Hi,
Add a form field for the first column in the table and you just add below code in to form field help text.
<?if@row:position:() mod 3=0?>
<xsl:attribute name="background-color" xdofo:ctx="in context">lightgray</xsl:attribute>
<?end if?>
Regards,
Pavan