Hi experts,
I'm using your very good ListView to make a list of athletes performing a competition.
The data is coming out of a sqlite database and I can group the athletes depending on their age.
I can create new athletes and edit them. This all is working very good.
At the ListView for the race every list item (every athlete) has a stopwatch.
There I want to show the elapsed time.
How can I refresh the view to show the current value of the stopwatch?
Using INotifyPropertyChanged for my ViewModel is difficult because the setter and getters are in my "normal" model.
I tried to use
Device.BeginInvokeOnMainThread but in order to work with this I have then to walk through the items in the ListView with foreach.
Unfortunately this does not work with SFListView.
Is there any possibility to walk through the items or is there another way to solve my problem?
TIA
Stephan