Re: exception report

2012-12-27 Thread Neil Pierson
Unsubscribe. On Dec 27, 2012, at 8:07 AM, nhhockeyplayer nashua wrote: > > it would be nice if I knew WHICH parameter > - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additiona

Re: How to have every second value in the t:loop different

2012-07-04 Thread Neil Pierson
how about Java: public String getRowClass() { return (index % 2 == 0) ? "evenRow" : "oddRow"; } tml: ... css: .oddRow { background: etc... } .evenRow { background: etc } On Jul 4, 2012, at 4:04 PM, bhorvat wrote: > So