Hi,
i added to my program a grid and disabled the ability to edit rows
for some reason when i click on any row, it still looks like i can edit the data
you can see that the selected row looks like is editable.
i'll be glad to know which property i need to change for disable what you see in the image
Thank you all in advance
Thank you andrej!
tried the first option and now the rows are fixed
ultraGrid1.DisplayLayout.Override.CellClickAction = CellClickAction.CellSelect;
OR
ultraGrid1.DisplayLayout.Bands[0].Columns[0].CellActivation = Activation.NoEdit;
Documentation describes the difference between these two approaches