Hi,
I'm having a little problem, I have a RadGridView where the startup form I do:
I'm having a little problem, I have a RadGridView where the startup form I do:
ConditionalFormattingObject c2 = new ConditionalFormattingObject("Test_A", ConditionTypes.Equal, "true", String.Empty, true);
c2.CellForeColor =
c2.RowForeColor = Color.Blue;
gdvAuditoria2.Columns[NomesColunasGridAuditoria.Validar].ConditionalFormattingObjectList.Add(c2);
gdvAuditoria2.Columns[NomesColunasGridAuditoria.Rejeitar].ConditionalFormattingObjectList.Add(c2);
ConditionalFormattingObject c3 = new ConditionalFormattingObject("Test_B", ConditionTypes.Equal, String.Empty, String.Empty, true);
c3.CellForeColor =
c3.RowForeColor = Color.Black;
gdvAuditoria2.Columns[NomesColunasGridAuditoria.CodAuditoria].ConditionalFormattingObjectList.Add(c3);
ConditionalFormattingObject c1 = new ConditionalFormattingObject("Test_C", ConditionTypes.Equal, "true", String.Empty, true);
c1.CellForeColor =
c1.RowForeColor = Color.Red;
gdvAuditoria2.Columns[NomesColunasGridAuditoria.Substituido].ConditionalFormattingObjectList.Add(c1);
More formatting that is being changed only when changing line.
How can I do to change a value after a row with checkbox that formatting is applied?
Marcelo