I am using a radgrid with GridClientSelectColumn as one of the column.
i changed the item row color using
I selected that checkbox which row is already highlighted by this RED color , its overwriting my red color background.
I want to prevent this
i tried this .rgSelectedRow
{
background-color:Red;
color: Red !important;
} also
its making the font color for the row as RED but bg color is not still changing
shall i use
i changed the item row color using
e.Item.BackColor ="Red" in itemdatabound event based on some condition
I selected that checkbox which row is already highlighted by this RED color , its overwriting my red color background.
I want to prevent this
i tried this .rgSelectedRow
{
background-color:Red;
color: Red !important;
} also
its making the font color for the row as RED but bg color is not still changing
shall i use
ClientEvents-OnRowSelecting events?