Hi,
I want to disable cell editing after display.
I try to set grid with default setting and add some rows via source code.
At run time, when I double click cell, I can edit cell data. This sitation is not I want to.
I want to lock the cell data.
Could you help me?
hi if u want to disable the cell editing .. use this code
grd.ActiveRow = Nothing
before that in the initialize event set this code
grd.DisplayLayout.Bands(0).Override.CellClickAction = CellClickAction.RowSelect
so that click action enables row selection ..
happy coding