Hi Joe,
I was looking through the gridview css files that are included with mojoPortal and noticed that the YahooGridView.css has an issue with one of the image references.
.AspNet-GridView table tbody tr.AspNet-GridView-Alternate td{
background-color: #9ab2ca;
background-image: url(Images/YahooSprite.gif);
background-position:0 -80px;
background-repeat:repeat-x;
}
This should be:
.AspNet-GridView table tbody tr.AspNet-GridView-Alternate td{
background-color: #9ab2ca;
background-image: url('YahooSprite.gif');
background-position:0 -80px;
background-repeat:repeat-x;
}
I really like the YahooGridView after making this change. :-)
Thanks,
Joe D.