The nth-child approach won't work on IE 6, 7 & 8, I believe.
Bob Harner
On Aug 9, 2011 9:15 AM, "TG" wrote:
> Dmitry, your solution works like a charm :) ! I think it is the simplest
that
> works with Tapestry grid I have seen so far.
>
> Thanks a lot!
>
> --
> View this message in context:
http:
Dmitry, your solution works like a charm :) ! I think it is the simplest that
works with Tapestry grid I have seen so far.
Thanks a lot!
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/Zebra-Grid-in-Tapestry-5-2-6-tp4680461p4681963.html
Sent from the Tapestry - User mailin
On Mon, 08 Aug 2011 23:14:55 -0300, TG wrote:
What is the simplest way to do this without writing any codes but maybe
just css3?
See http://reference.sitepoint.com/css/pseudoclass-nthoftype. No code
needed, just CSS.
--
Thiago H. de Paula Figueiredo
Independent Java, Apache Tapestry 5 an
Here's one solution:
CSS:
.myRowClass:hover, .myRowClass:nth-child(even):hover {
background-color: #DCE5FF;
}
.myRowClass:nth-child(even) {
background-color: #E8E8E8;
}
TML:
On Tue, Aug 9, 2011 at 06:14, TG wrote:
> What is the simplest way to do this without writing any cod
Tapestry JumpStart shows you how to do exactly that. Not exactly no code, but
its pretty easy.
On Aug 8, 2011, at 10:14 PM, TG wrote:
> What is the simplest way to do this without writing any codes but maybe just
> css3?
>
> Thanks.
>
> --
> View this message in context:
> http://tapestry.10
What is the simplest way to do this without writing any codes but maybe just
css3?
Thanks.
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/Zebra-Grid-in-Tapestry-5-2-6-tp4680461p4680461.html
Sent from the Tapestry - User mailing list archive at Nabble.com.
---