Hi,
I have problems with VS2010 and the newest Version with the GridView. I can't set the Font and other properties, because the CellElement is null. The same code works with VS2008 and the GridView from the last year.
Is that a known problem?
Greetings
Konrad
...
I have problems with VS2010 and the newest Version with the GridView. I can't set the Font and other properties, because the CellElement is null. The same code works with VS2008 and the GridView from the last year.
Is that a known problem?
Greetings
Konrad
private void radGridView1_ViewRowFormatting(object sender, RowFormattingEventArgs e)
{
......
e.RowElement.GradientStyle =
GradientStyles.Solid;
e.RowElement.RowInfo.Cells[
"Nr"].CellElement.Font = _einzelRingFontNr;
e.RowElement.RowInfo.Cells[
"Ring"].CellElement.Font = _einzelRingFontRing;
e.RowElement.RowInfo.Cells[
"Teiler"].CellElement.Font = _einzelRingFontTeiler;
e.RowElement.RowInfo.Cells[
"Pos"].CellElement.Font = _einzelRingFontPosition;