I want only some of columns to be editable in my RadGrid. I have GridEditCommandColumn, GridBoundColumns (for them I dont want to be editable) and GridTemplateColumns (they need to be editable). Is that possible and how?
For columns that you do not want to be editable, simply set the ReadOnly property on the columns to True. This will prevent them from going in to "edit mode" when a row is edited in your grid.
I have a Grid whose values are populated by data source and I want to edit the cells of a particular column so that the table gets updated in the database. The above suggestion setting Read Only doesn't seem to work now. Could you please provide me with any other solution.