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

AW: Dynamic Table Rows

2003-06-10 Thread Patrick Mannhart
thank's a lot!! :-) regards patrick -Ursprüngliche Nachricht- Von: Roxana Constandes [mailto:[EMAIL PROTECTED] Gesendet: Montag, 9. Juni 2003 20:39 An: [EMAIL PROTECTED] Betreff: RE: Dynamic Table Rows Try this: xsl:for-each select=foo fo:table-row font fo:table

Dynamic Table Rows

2003-06-09 Thread Patrick Mannhart
Hi I need some important help! How can I generate dynamical table rows? I have a xml-file like this ... foo baraa/bar 42bb/42 /foo foo barxx/bar 42yy/42 /foo etc. ... now, I want a table in my xsl-file with 2 columns and n rows - it means each foo is a own row. One possibility is, to

RE: Dynamic Table Rows

2003-06-09 Thread Teator, Michael
Message- From: Patrick Mannhart [mailto:[EMAIL PROTECTED] Sent: Monday, June 09, 2003 2:28 PM To: [EMAIL PROTECTED] Subject: Dynamic Table Rows Hi I need some important help! How can I generate dynamical table rows? I have a xml-file like this ... foo baraa/bar 42bb/42 /foo foo barxx/bar

RE: Dynamic Table Rows

2003-06-09 Thread Roxana Constandes
/fo:table-row /xsl:for-each I hope it helps. -Original Message- From: Patrick Mannhart [mailto:[EMAIL PROTECTED] Sent: Monday, June 09, 2003 2:28 PM To: [EMAIL PROTECTED] Subject: Dynamic Table Rows Hi I need some important help! How can I generate dynamical table rows? I have a xml

dynamic table

2003-03-17 Thread patrick-peter.mannhart
Hi, does smoebody knows how I can generate dynamical Tables (esp. rows!) in XSL-FO? For ex. I def. a table with 4 columns, but the number of rows isn't well-known at the moment? Thank's for help regards patrick - To

Re: dynamic table

2003-03-17 Thread Jochen . Maes
: 17/03/2003 16:09 Subject: dynamic table Please respond to fop-user

Re: dynamic table

2003-03-17 Thread Louis . Masters
Sample code for this below: xsl:for-each select=reportcols fo:table-column column-width=[EMAIL PROTECTED]/ /xsl:for-each -Lou [EMAIL PROTECTED] on 03/17/2003 10:12:58 Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject: Re: dynamic table do