Hi Matti,
Thank you for your patience.
We have checked the reported query “Update GroupHeader whenever underlying data changes” from our end. We suggest you to update the GroupHeader by using the following code snippet,
Code Snippet C#: Update All the Group in the ListView
|
private void Button_Clicked(object sender, EventArgs e)
{
var bindingContext = button.BindingContext as ContactsViewModel;
foreach (var item in bindingContext.contactsinfo)
{
item.ContactNumber = "1000";
}
listView.RefreshListViewItem(-1, -1, true);
} |
We have attached the tested sample for your reference,
Please let us know if you need further assistance.
Regards,
Chandrasekar Sampathkumar