((
GridTableElement)this.radGridView1.GridElement).AlternatingRowColor = Color.DarkGray;
The problem is that when I select a new now the previous row color remains the “selected row” color and does to drop back to the default row color. This is does not affect the alternating row. Why? Am I missing something?
private void radGridAdjustments_Initialized(object sender, EventArgs e)
{
radGridAdjustments.Columns.Add(
new GridViewTextBoxColumn("AdjAmount"));
radGridAdjustments.Columns[
"AdjAmount"].FieldName = "AdjAmount";
radGridAdjustments.Columns["AdjAmount"]).FormatInfo = CultureInfo.CurrentCulture
radGridAdjustments.Columns["AdjAmount"].FormatString = "{0:c}";
radGridAdjustments.Columns[
"AdjAmount"]).FormatInfo.NumberFormat.CurrencyDecimalDigits = 2;
}