peterthorpe81

Results 26 comments of peterthorpe81

> https://vladislavantonyuk.github.io/articles/Microsoft-Identity-Platform-Authentication-in-Blazor-Web-Application > > You can also find a template here: https://www.nuget.org/packages/VladislavAntonyuk.DotNetTemplates/3.0.247-pre4 Unless I'm missing something this is just the server rendering solution. It doesn't support the other render modes...

> I guess the question is how we cover both scenarios that may happen when using auto: the first access is server-side Blazor, the following accesses should be WASM, so...

> @peterthorpe81 if you look at what happens in the new blazor web app when auto and identity with local user accounts are used, you'll see that the server app...

@tjscience I appreciate this looks complex and I was a bit reluctant to submit the PR to be honest. I know it may not get pulled. The initial state isn't...

> @peterthorpe81 Thanks for this pull request. looking forward for it to get merged. In our application we use the hidden property on the PropertyColumns to save the hidden state,...

> > @tjscience I think it is up to you to decide if the `ColumnState` abstraction stays or if we just use extra fields. > > I'm curious how the...

> After playing around with this more in-depth, I am starting to really like this implementation. I think that the added complexity up front allows for streamlining these types of...

@ScarletKuro > Oh, we were writing a comment at same time, I only saw the reply after I finished. I'm ready to merge this if we comply with the code...

This kind of functionality is needed. I think it needs more consideration around what state may want to be saved/loaded as column order is just one part of it. There...

I may be missing something but what's the issue with the sortby function? Example: https://try.mudblazor.com/snippet/mYwSaGufoMXdeDxC key lines: ``` await grid.SetSortAsync(nameof(Element.Sign), SortDirection.Ascending, _sortBy); private Func _sortBy => x => { return...