Highlight using Alternate Row Colors on MouseOver?
I would like to highlight the mouseover row using different colors for odd and even.
For example,
if odd rows are red then a highlighted odd row should be dark red
if even rows are yellow then a highlighted even row should be dark yellow
From the grid sample I can
1) set colors for alternate rows and
2) set a single color for the highlighted row
Anyway to set alternating colors for the highlighted row?
For example,
if odd rows are red then a highlighted odd row should be dark red
if even rows are yellow then a highlighted even row should be dark yellow
From the grid sample I can
1) set colors for alternate rows and
2) set a single color for the highlighted row
/* Alternate row colors */
#myGrid .aw-alternate-even {background: #fff;}
#myGrid .aw-alternate-odd {background: #eee;}
/* Highlight on mouseover, mousedown */
#myGrid .aw-mouseover-row {background: #ccc;} */
#myGrid .aw-mousedown-row {background: #999;} */
Anyway to set alternating colors for the highlighted row?
Rob Francis
December 1,