Hi,
I am using XamDataGrid in which i want to get the whole Data present in the records which are selected.Is there any event which fires when we multi select the XamDataGrid and how can we get the hold of Data of the selected records....please let me know whether we can handle this or not...Thanks
The event that would fire is the SelectedChanging/SelectedItemChanged. In the Chaging event, you will have direct access to the new selection, but you can also check the SelectedItems.Records collection (if you want to get the selected records only).
This collection contains objects of type Record. You can cast this to DataRecord and you will have access to the Cells - through the cells collection or directly to the underlying data object - through the DataItem property.
Hope this helps
although i select multiple records , the XamDataGrid.SelectedItems.Records.Count is zero,i am not able to get the all selected records.