Relative Content

Tag Archive for blazorblazor-server-side

How do I find a specific subcomponent?

I have a Blazor server-side app, which simulates a windowing system. This uses the TelerikWindow component. Each child window is a separate component, inheriting from a WindowBase component and containing the code for the specific window.

Blazor: How do I find a specific subcomponent?

I have a Blazor server-side app, which simulates a windowing system. This uses the TelerikWindow component. Each child window is a separate component, inheriting from a WindowBase component and containing the code for the specific window.

EditForm.OnValidSubmit called 4 times in rapid succession

We have one user this is happening with. We cannot reproduce it and it is not happening to any others. And it has happened to them twice out of 8 uses of the relevant page. Needless to say, I can’t create a MVE because we can’t reproduce it.

Cannot Get InvokeAsync(() => StateHasChanged()); To Work

This is a Blazor Server solution. The PopulateFilmography() method sets a callback method in the FilmographyService class and then calls filmographyService.GetFilmography.
That service method gets data from an API and loops through the results. In each loop iteration, it calls the callback method. This method displays a modal (if not already open) and adds log entry to its data source. The idea is that the modal will display the activity of the API calls in real time.