The example handles the EditValueChanged event to respond to changing an editor's value. The example calls the PostEditor method to save the modified value to a data source. Once the value is posted to a data source, the Data Grid control invalidates/repaints the cell. The RowCellStyle event is handled to customize row appearance settings based on a specific condition:
void gridView1_RowCellStyle(object sender, RowCellStyleEventArgs e) {
if (!true.Equals(gridView1.GetRowCellValue(e.RowHandle, "UseStyles")))
return;
e.Appearance.BackColor = GetRowBackColor(e.RowHandle);
}
(you will be redirected to DevExpress.com to submit your response)