Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
880
Upgraded from 8.1 to 10.1 now getting "Column ... is read only"
posted

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.

  • 880
    posted

    Still have not found any workarounds.  Anybody?

    I have tried:

    band.Override.AllowUpdate = DefaultableBoolean.True;
    row.cell.Activation = Activation.AllowEdit;
    row.Activation = Activation.AllowEdit;