Hi mark, I couldn't find the any example using fop extension 'ContinuedLabel'. If you have one please send it across to me..
Regards, Vinod. -----Original Message----- From: Mark Baier [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2003 12:39 PM To: [EMAIL PROTECTED] Subject: AW: alternate row color Hi, yes you can do that with the fop extension ContinuedLabel. Look in the examples of your fop. greez, mark -----Urspr�ngliche Nachricht----- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 13. Juni 2003 09:12 An: [EMAIL PROTECTED] Betreff: RE: alternate row color Hi, In the same way can we solve this problem?. This is the situation. 1. I have 3 tables in the PDF each one may or may not span out for more than a page. 2. I am using table headers to carry the specific information pertaining to that table to the beginning of each page within the scope of that table. Let me briefly describe the requirement. If a table spans for more than a page, then for every following page from page no 2 of that table, till the page where the table ends, 'CONTINUED' is to be displayed at the top of the every page. Thanx & Regards, Vinod. -----Original Message----- From: Clay Leeds [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2003 3:42 AM To: [EMAIL PROTECTED] Subject: Re: alternate row color On 6/12/2003 3:07 PM, Daniel M�ller wrote: > How do you alternate the row color in a table? > > Daniel You cannot use a variable like that. You have to set the color using xsl:attribute as shown below, where I switch off between white (#ffffff) and an ugly orange (#e3ceb9) color: <fo:table-row> <xsl:attribute name="background-color"><xsl:choose><xsl:when test="(position() mod 2) = 0">#e3ceb9</xsl:when><xsl:otherwise>#ffffff</xsl:otherwise></xsl:choose></xsl:attribute> <fo:table-cell padding="1pt"> <fo:block> <xsl:value-of select="ICD9"/> </fo:block> </fo:table-cell> <fo:table-cell padding="1pt"> <fo:block padding-left="5pt">  <xsl:value-of select="ICD9DESC"/> </fo:block> </fo:table-cell> </fo:table-row> -- Clay Leeds - [EMAIL PROTECTED] Web Developer - Medata, Inc. - http://www.medata.com PGP Public Key: https://mail.medata.com/pgp/cleeds.asc --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] DISCLAIMER: This message contains privileged and confidential information and is intended only for the individual named.If you are not the intended recipient you should not disseminate,distribute,store,print, copy or deliver this message.Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system.E-mail transmission cannot be guaranteed to be secure or error-free as information could be intercepted,corrupted,lost,destroyed,arrive late or incomplete or contain viruses.The sender therefore does not accept liability for any errors or omissions in the contents of this message which arise as a result of e-mail transmission. If verification is required please request a hard-copy version. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] DISCLAIMER: This message contains privileged and confidential information and is intended only for the individual named.If you are not the intended recipient you should not disseminate,distribute,store,print, copy or deliver this message.Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system.E-mail transmission cannot be guaranteed to be secure or error-free as information could be intercepted,corrupted,lost,destroyed,arrive late or incomplete or contain viruses.The sender therefore does not accept liability for any errors or omissions in the contents of this message which arise as a result of e-mail transmission. If verification is required please request a hard-copy version. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
