Hi. I want to get the value of the DataGridComboBoxColumn... i have tries many methods and finally got this one working...
ComboBox assessmentBox = dgAssesments.Columns[i].GetCellContent(dgAssesments.ItemContainerGenerator.ContainerFromIndex(j) as DataGridRow) as ComboBox;
and then got selected item form assessmentBox... but i think this is not the right way to do it... i think this is very complicated... so can you tell me the right way ?