I need to be able to roll over a Grid Row and have the row color change without changing the grid lines. I found a solution that changes the color fine but it removes the grid lines, horizontal and vertical, and changes the row height to 20 PX.
.RowMouseOver td
{
background-color: Aqua;
height: 30px;
}
function RowMouseOver(sender, eventArgs) {
$get(eventArgs.get_id()).className = "RowMouseOver";
}
Thanks for any ideas as I am new here
.RowMouseOver td
{
background-color: Aqua;
height: 30px;
}
function RowMouseOver(sender, eventArgs) {
$get(eventArgs.get_id()).className = "RowMouseOver";
}
Thanks for any ideas as I am new here