I want to take all rows that are selected and modify one column value in each of them.
I tried this but it doesn't work.
foreach (System.Data.DataRowView DRV in ItemDataGrid.SelectedItems)
{
DRV.Row.BeginEdit();
DRV.Row.ItemArray[6] = true;
DRV.Row.EndEdit();
}
Anyone know how to do this?
Thanks, Matt