hi,
--------------------------------------------------------------------------
GridViewDataRowInfo row = this.Grid.Rows.NewRow();
row.Cells[0].Value = 4;
row.Cells[1].Value = "test";
row.Cells[2].Value = "hugo";
row.Tag = "key";
this.Grid.Rows.Add(row);
--------------------------------------------------------------------------
I have the problem, that the row.Cells.Values are always null! The Value-Setter doesn't work!
This Problem exists in the new dlls in version 2010.1.10.409! In the last version this was no problem!
thx
--------------------------------------------------------------------------
GridViewDataRowInfo row = this.Grid.Rows.NewRow();
row.Cells[0].Value = 4;
row.Cells[1].Value = "test";
row.Cells[2].Value = "hugo";
row.Tag = "key";
this.Grid.Rows.Add(row);
--------------------------------------------------------------------------
I have the problem, that the row.Cells.Values are always null! The Value-Setter doesn't work!
This Problem exists in the new dlls in version 2010.1.10.409! In the last version this was no problem!
thx