I have a asp:DataGrid which holds data in two columns on my webpage. The user can select a row for editing which I do by setting the value of “EditItemIndex” and rebinding the grid. What I would like to do now is restrict the editing to just one of the cells in the row rather than both. Is this possible?
Share
You can set the “ReadOnly” attribute of the column that you don’t want to edit, to true.