Hi Ben,
Thank you for contacting Syncfusion support.
We have checked the reported issue with our source and discovered that SfDataGrid children's get disposed while navigating to another page. So, we suggest you to run the prism navigation operation on main thread like the below code snippets.
Code snippets :
private async void RequestNavigateToEditItem(Guid? itemId)
Device.BeginInvokeOnMainThread(() =>
this.NavigationService.NavigateAsync(name: LandingPageProp);
// <----- Exception gets thrown when this is called
System.Diagnostics.Debug.WriteLine("Exception");
} |
Regards,
Karthik Raja