I have a grid that we need to bold the text when the value changes...the code Im using is in the CellEditEnded event handler:
void GridView_CellEditEnded(object sender, GridViewCellEditEndedEventArgs)
{
if(e.NewData != e.OldData)
{
e.Cell.FontWeight = FontWeights.Bold;
}
}
This works fine...BUT when I switch rows the style goes back to its original style. My use case requires that ALL changed values remain bolded.
How can I achieve this?
Thanks,
Ron