Hi,
my problem is that when I define a GridViewColumn the value of Background is ignored!
BUT (and I use this as workaround) with GridViewDataColumn it works.
The first column in this snippet is not colored - the second is!
I just want to notice this problem - it is not stopping me or such bad things.
Regards
Manfred
my problem is that when I define a GridViewColumn the value of Background is ignored!
BUT (and I use this as workaround) with GridViewDataColumn it works.
| <telerik:RadGridView.Columns> |
| <telerik:GridViewColumn Width="115" Background="Silver"> |
| <telerik:GridViewColumn.CellTemplate> |
| <DataTemplate> |
| <TextBlock Text="Test" /> |
| </DataTemplate> |
| </telerik:GridViewColumn.CellTemplate> |
| </telerik:GridViewColumn> |
| <telerik:GridViewDataColumn Width="115" Background="Silver"> |
| <telerik:GridViewDataColumn.CellTemplate> |
| <DataTemplate> |
| <TextBlock Text="Test" /> |
| </DataTemplate> |
| </telerik:GridViewDataColumn.CellTemplate> |
| </telerik:GridViewDataColumn> |
I just want to notice this problem - it is not stopping me or such bad things.
Regards
Manfred
