This is a migrated thread and some comments may be shown as answers.

ConditionalFormattingObject with CheckBox in row

0 Answers 103 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Marcelo
Top achievements
Rank 1
Marcelo asked on 30 Jun 2011, 07:03 PM
Hi,

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




No answers yet. Maybe you can help?

Tags
GridView
Asked by
Marcelo
Top achievements
Rank 1
Share this question
or