Hello,
i have the following code which gives me the value in cell 0 of the selected row.
string idtoapp;
var selectedItem = sfDataGrid3.SelectedItems[0];
var dataRow = (selectedItem as DataRowView).Row;
idtoapp = dataRow["id"].ToString();
i wish to use multiple selection and return all values of cell 0 from the rows that are selected.
your help would be mostly appreciated.
Many Thanks
Matt