Hello,
we switched our Application (and therefore our RadGridView) from build version 2010.1.625.35 to 2010.2.714.40 - now quite a bit of code isn't working anymore.... We could isolate the problem to the following:
- The UniqueName of the column isn't assigned / created anymore when the column is added to a grid:
in version 2010.1.625.35 this would result in newColumn.UniqueName => "TEST"
in version 2010.2.714.40 (also in 2010.2.812.40) the value of newColumn.UniqueName is NULL!!!!
Since we use the UniqueName all over the place we need an urgent fix!!!!!
Please advise...
Regards M.
we switched our Application (and therefore our RadGridView) from build version 2010.1.625.35 to 2010.2.714.40 - now quite a bit of code isn't working anymore.... We could isolate the problem to the following:
- The UniqueName of the column isn't assigned / created anymore when the column is added to a grid:
(newColumn can be GridViewDataColumn, GridViewImageColumn etc.)
newColumn.DataMemberBinding =
new
Binding { Path =
new
PropertyPath(
"TEST"
) };
grid.Columns.Add(newColumn);
in version 2010.1.625.35 this would result in newColumn.UniqueName => "TEST"
in version 2010.2.714.40 (also in 2010.2.812.40) the value of newColumn.UniqueName is NULL!!!!
Since we use the UniqueName all over the place we need an urgent fix!!!!!
Please advise...
Regards M.