Louis, Unfortunately, you can only use absolute values for the column-width attribute currently (like 3cm). I'm currently planning on adding support for the proportional-column-width() function in table-column which would provide a similar way of specifying widths. For example, to get three columns of equal width, you would use: <fo:table-column column-width="proportional-column-width(1)"/> <fo:table-column column-width="proportional-column-width(1)"/> <fo:table-column column-width="proportional-column-width(1)"/> The table-width must be specified and the layout set to "fixed" in order for this to work. But the table-width itself could be a percentage, which is interpreted relative to the block containing the table.
I'll certainly post to the list when I get this done. Regards, Karen Lease [EMAIL PROTECTED] wrote: > > Folks: > > 1) Can I use a percentage for the column width? For example: > > <fo:table-column column-width="20%"/> > > 2) Is the 'auto' table layout implemented yet? > > 3) Is it possible to dynamically declare my table columns using a > for-each? For example: > > <xsl:for-each select="reportrow/cell[not(@display)]"> > <fo:table-column column-width="15mm"/> > </xsl:for-each> > > Thanks in advance. > > -Lou > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, email: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]
