I use the Default style of infragistics 14.1
What is the CSS i need to change see in my image:
RowUpdating : i want to have text color in blue and italic - myCSSRowUpdating {color:blue;font-style: italic;}
RowAdding : i want i backcolor yellow - myCSSRowAdding {background-color: yellow;}
Hello Danjut,
By overriding the following CSS classes you will get the desired results
.igg_Alt.igg_UpdatedRow td
{
color:red !important;
font-style: italic;
}
tbody tr.igg_AddedRow td
background-color: yellow;
color:#666;