I am trying to edit the value of a cell in an UltraGridGroupByRow. It was working fine in 2008.1. I recently upgraded the project to 2010.1 and this was one of the few things that broke compatability. I need a little help getting it working again.
The existing code that stopped working: groupByRow.Cells["Key"].Value = "Test Value";
I also tried: groupByRow.Cells["Key"].SetValue("Test Value", false);
I get the same error no matter what I do. That error is: "Column 'Key' is read only".
Does anyone know of a work around?
Thanks.
Still have not found any workarounds. Anybody?
I have tried:
band.Override.AllowUpdate = DefaultableBoolean.True;row.cell.Activation = Activation.AllowEdit;row.Activation = Activation.AllowEdit;