How to get the data object list in sfDatagrid?
for example, I am using List<Person> and use ICollectionView to feed sfDatagrid,
it's working fine, but how can I get the current sfdatagrid of Person data?
try to get with SP_DataTable.View.Records, but don't know how to deal with RecordEntry.
My goal is to get a list of <Person> that current sfdatagrid contain.
thanks
ICollectionView itemsView = CollectionViewSource.GetDefaultView(I_SP_datatable);
SP_DataTable.ItemsSource=itemsView;