I have a grid bound to a List<> of data.
I have a button in the row to remove the row.
I am not using "OnRead".
If I would like to delete the row (and send the change to the backend), how do I remove the row from the grid without having to refresh all the data?
I have tried removing it from the List<> and then calling StateHasChanged, but it has no effect on the grid. The record is removed in the backend.
Please advise.