This question is locked. New answers and comments are not allowed.
Hi Admin,
How can I modify particular column of selected rows. I don't want to save it to db. My Grid is bind to view in database by domain data source. I have tried following code. But it is not working. My data model properties are readonly so not able to modify those. Please help. I am having time till tomorrow.
How can I modify particular column of selected rows. I don't want to save it to db. My Grid is bind to view in database by domain data source. I have tried following code. But it is not working. My data model properties are readonly so not able to modify those. Please help. I am having time till tomorrow.
GridViewCell cell = null; foreach (var item in CurrentView.radGridView.SelectedItems) { cell = (item as GridViewRow).Cells[6] as GridViewCell; cell.IsInEditMode = true; cell.Value = "Voluntary"; }
