Im looking for styling the row that's being edited in my GridView.
I know how to change the background colour and the font, but what i need is it to look like it's over the grid, like with a shadow, the edited row must be really highlighted.
My styles.css:
.grid_normalRow /*on mouse out event*/
{
background-color:white;
}
.grid_highlightedRow /*on mouse over event*/
{
background-color:aqua;
}
.grid_editedRow /*on row editing event - The one i need to change */
{
background-color:yellow;
font-weight: bold;
height: 30px;
}
I can't find the apropiate css style to acomplish my requirement.