Hello everyone,
I'm currently building an android application using MvvmCross framework.
I'm using SfDataGrid to display a huge amount of data but I've a non-blocking issue with selection behavior.
When I select a line, everything is ok. I can retrieve selected data and pass them through my ViewModel exactly the way I want, to display detailed data for example.
But when I'm returning to SfDataGrid, previous selected row is now blank. When I tap it, it appears instantly with appropriate data.
I've seen using breakpoints that SfDataGrid object has a SelectedItem property (null when I'm returning, as intent), but also has a SelectionController with a SelectedItem property, that still has the last selected data !
I can't access this SelectionController without having a NullPointerException, so I would like to know how to avoid this blank row if possible, or how to report this strange behavior.