In my VB.net application I have a Janus GridEx (v.3).
By default, each cell of each row is editable. But in certain conditions, I want a specific cell to be set to ReadOnly
(or someting that unset the edit mode for this cell) during RowLoadEvent
.
I know how to make an entire column not selectable (and how to get a specific cell) with :
e.Row.Cells("IndiceNew").Column.Selectable = False
But the only properties I can set are related to format (image, colors...). Any tips ? Thanks in advance.