Is there a way to make only a few cell read-only?
This should help you out:
http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.aspx?ArticleID=6156
You can selectively set the activation property on a cell during the binding operation in InitializeRow, for example, create an integer named X and put this code in InitializeRow, and the Column 1 of Row 5 will be read only.
x = x + 1
If x = 5 Then e.Row.Cells(1).Activation = Infragistics.Win.UltraWinGrid.Activation.NoEdit
Let me know if you need any more info.
Thanks
Jason
Thanks for this, worked perfectly. Are some questions not able to be marked as "Answered"...i guess maybe older questions before new functionality was available.