I am using a Syncfusion blazor Grid with Custom Adapter. After making database update, I want to refresh the Grid to show the updated data.
After making database update, I use
GridInstance.Refresh(); to refresh the grid. On debugging I notice that the CustomAdapter is called however it fetches me old records from the database. I checked the database and the data has been updated.
When I do a hard refresh using
UriHelper.NavigateTo("/VolumeReview/" + JobId.ToString(),true);
the grid is refreshed correctly
How do I refresh the Grid using Custom Adapter without doing a hard refresh. An sample example will be helpful
Thanks
Kapil