Alternating the color of table rows

2000-03-31 Thread Bogesdorfer, Dan L.
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BF9B33.9E5B8AA0 Content-Type: text/plain; charset="iso-8859-1" How can I alternate the color of my table rows. What I'm trying

Re: Alternating the color of table rows

2000-03-31 Thread Curtis Layton
gesdorfer, Dan L." [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, March 31, 2000 12:07 PM Subject: Alternating the color of table rows This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_Next

Re: Alternating the color of table rows

2000-03-31 Thread Mario Talavera
Try this for the table row: TR bgcolor="#IIf(CurrentRow Mod 2, DE('ff'), DE('99ccff'))#" At 12:07 PM 3/31/00 -0500, you wrote: This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible.

RE: Alternating the color of table rows

2000-03-31 Thread Adrian Wright
the color of table rows This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BF9B33.9E5B8AA0 Content-Type: text/plain; charset="iso-8859-1" How can I alternate the color of my

RE: Alternating the color of table rows

2000-03-31 Thread Steve Martin
1 March 2000 18:08 To: '[EMAIL PROTECTED]' Subject: Alternating the color of table rows This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BF9B33.9E5B8AA0 Content-Type: text/plain; c

RE: Alternating the color of table rows

2000-03-31 Thread Bogesdorfer, Dan L.
!! thanks.. Daniel Bogesdorfer Programmer/Analyst RSL COM USA INC Voice 412.244.6628 -Original Message- From: Ron Anderson [mailto:[EMAIL PROTECTED]] Sent: Friday, March 31, 2000 12:21 PM To: [EMAIL PROTECTED] Subject: RE: Alternating the color of table rows Here's one way: CFIF (CurrentRow

Re: Alternating the color of table rows

2000-03-31 Thread Stephen M. Aylor
If your using custom colors - you might try cfoutput cfif CurrentRow MOD 2 IS 0 tr bgcolor="Silver" cfelse tr bgcolor="##D7D7D7" /CFIF blah... Now I have a question. How would I use this style: TR bgcolor="#IIf(CurrentRow Mod 2, DE('ff'), DE('99ccff'))#" With a

RE: Alternating the color of table rows

2000-03-31 Thread jstiefel
iif(CurrentRow mod 2,DE("Silver"),DE("White")) works fine. Is this what you mean by "custom defined color" ? -Original Message- From: Stephen M. Aylor [mailto:[EMAIL PROTECTED]] Sent: Friday, March 31, 2000 12:28 PM To: [EMAIL PROTECTED] Subject: Re: Alter