Re: Dynamic Table Rows

2003-06-10 Thread Mike Ferrando
Patrick, This is a basic XSL question. However, based on what you have said and your XML example, here is my attempt. If you need more help e-mail me personally. Mike F. xsl:template match=foo fo:table-row font xsl:apply-templates select=* mode=special/ /fo:table-row /xsl:template

RE: Dynamic Table Rows

2003-06-09 Thread Teator, Michael
Patrick, I think this is really more of an XSL question. I suggest you look through http://www.w3schools.com/xsl/ and you'll find several different ways to handle your problem. Pay particular attention to templates and for-each routines. Michael Teator [EMAIL PROTECTED] -Original

RE: Dynamic Table Rows

2003-06-09 Thread Roxana Constandes
Try this: xsl:for-each select=foo fo:table-row font fo:table-cell fo:blockxsl:value-of select=bar//fo:block /fo:table-cell fo:table-cell fo:blockxsl:value-of select=42//fo:block /fo:table-cell