I'm using the Datagrid Settings per the example Blazor WASM.
The Datagrid is is contained within a component. ListWorkRequestComponent .Razor
The component is not always visable and is only displayed when needed by the application..
To display or hide I invoke StateHasChanged(). This all works fine.
I call StateHasChanged() from the parent page, this has the side effect of calling the DataGridSettings SET propertty with a default value thereby overrriding the saved setting;
Calling StateHasChanged() should not restore original values if they are properly retrieved from the local storage. Our demo does not have such problems.
Thank you so much for responding to my inquirer.
I think the issue I'm seeing is tied to a cascading component.
The grid is bound to a list referenced within the cascading component.
When list is updated a notification is triggered and the Cascading component calls StateHasChanged().
For now I'm going to implement using a different approach, but wanted to telll you what I'm seeing.
BTW, the settings feature is an awesome enhancement