RE: Toggle Colors between Rows

2005-06-09 Thread David G. Friedman
: Toggle Colors between Rows try www.husted.com/struts/resources/rowtag.zip This taglib is really easy to use. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, June 09, 2005 5:01 AM To: user@struts.apache.org Subject: Toggle Colors between Rows What is

RE: Toggle Colors between Rows

2005-06-09 Thread Ray Madigan
try www.husted.com/struts/resources/rowtag.zip This taglib is really easy to use. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, June 09, 2005 5:01 AM To: user@struts.apache.org Subject: Toggle Colors between Rows What is the best way to toggle col

RE: Toggle Colors between Rows

2005-06-09 Thread Nitin Mandolkar
blah... "Ray Madigan" <[EMAIL PROTECTED] > To "Struts Users Mailing List" 06/09/2005 09:52 AM cc Subject Please respo

RE: Toggle Colors between Rows

2005-06-09 Thread David Whipple
cc Subject Please respond to RE: Toggle Colors between Rows "Struts Users

RE: Toggle Colors between Rows

2005-06-09 Thread Nitin Mandolkar
In action class which generate the table row out put Declare one temp variable which will you can use in decision making. Suppose you want to switch between colors red and green. Code will be like this Byte switchcolor=0. If (switchcolor=0) { Row with red color

RE: Toggle Colors between Rows

2005-06-09 Thread Ray Madigan
I have a tag that I got from somewhere that allows you to set the even element class and the odd element class. It works great for me, if you want it, let me know and I will email it to you. Thanks -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, June

RE: Toggle Colors between Rows

2005-06-09 Thread McDonnell, Colm (MLIM)
Some ideas .. 1. Implement a switching accessor method in a base action form, the idea is that each time you access the property it will return the value which was not returned on the prior invocation e.g. // In your base action form private String listRowClass; public String ge

Re: Toggle Colors between Rows

2005-06-09 Thread delbd
The best using only the view? use this kind of css http://www.w3.org/Style/Examples/007/evenodd.html However, you will need a more than decent browser to do it. Le Jeudi 9 Juin 2005 14:00, [EMAIL PROTECTED] a écrit : > What is the best way to toggle colors between rows using logic:iterate > keep