Hi, i don't know how to make a cell ReadOnly, i want to have all a Row as readonly but one colum may be editable.I'm programming in C# .NEt 2008 and using an ultragrid, i like to have all columns except one in mode readonly.
Thanks
You can make a row or cell read-only by setting its activation property such as:
'Read-only cellDim PriceCell As UltraGridCell = e.Row.Cells(QuoteData.Summary.PriceColumn.ColumnName)PriceCell.Activation = Activation.NoEdit
'Read-Only Rowe.Row.Activation = Activation.NoEdit
Best event to handle these things is usually the InitializeRow event.