Hello
I need to change back color of GridTextBoxColumn while editing in RadGridView control.
My application have two themes BLACK and WHITE.
For BLACK theme textcolor is white editing GridTextBoxColumn the backcolor is white and textcolor is same so I'm unable see the typed text.
So far I have tried below approach
GridViewDataRowInfo row = new GridViewDataRowInfo(this.dataGridView1.MasterView);
row.Cells[0].Value = "";
row.Cells[1].Value = "";
row.Cells[0].Style.CustomizeFill = true;
row.Cells[0].Style.DrawFill = true;
row.Cells[0].Style.BackColor = ColorTranslator.FromHtml("41,44,41");
dataGridView1.Rows.Add(row);
Where-
row.Cells[0] is GridTextBoxColumn
row.Cells[1] is GridCommandColumn
but the changes are not affecting white editing text.
Please help.
Thanks in advance.