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.
I finally found a way to do it. So here is what I did if it may help someone facing the same problem.
Instead of doing at
LoadRowEventtime, I just cancel edit event duringEditingCellEventwith something like :Hope it can help someone in the future.