I'm experiencing a weird behaviour of the SfDataGrid control when using the SelectedItem property.
My XAML looks like this:
<Syncfusion:SfDataGrid ItemsSource="{Binding Clienti}"
SelectionUnit="Row"
SelectedItem="{Binding SelectedClient}"
AutoGenerateColumns="True">
</Syncfusion:SfDataGrid>
The property that I bind to gets updated the first time I select a row in the grid, but any subsequent selections are ignored.
If I place a brakpoint in the setter of the property I'm binding to, the "value" is always the first item that I select, regardless of the actual Item that I select in the grid.
This problem goes away when I use a simple DataGrid instead of Syncfusion:SfDataGrid.
Any ideas?