This code (InitEvent of the Grid) ends with a ReadOnly Column:
THIS.Column1.Header1.CAPTION = ""
THIS.Column1.WIDTH = 40
THIS.Column1.CONTROLSOURCE = "TableXYZ.abc"
THIS.column1.ReadOnly = TRUE
This code doesn't end with a ReadOnly Column:
THIS.Column1.Header1.CAPTION = ""
THIS.Column1.WIDTH = 40
THIS.Column1.CONTROLSOURCE = "TableXYZ.abc"
THIS.column1.Text1.ReadOnly = TRUE
No problem to write for each column this line of code, but it would be nice to know, why the grids behavior is not the same.
Thanks in advance