Modal
Modal copied to clipboard
A powerful and customizable modal implementation for Blazor applications.
**Is your feature request related to a problem? Please describe.** We have an application where we want to execute code at then end of the dialog. The logic that now...
If someone uses `UseCustomLayout = true`, animations won't be applied. Because the default animation is `ModalAnimationType.FadeInOut`, the delay for the animation will be applied also for custom layouts, which leads...
It would really be nice if instead of the user having to click the "X" or somewhere outside of the window to close it. If we could trap the user...
When IModalService is injected to a custom HttpMessageHandler in HttpClientFactory, The modal does not show. To Reproduce ``` services.AddHttpClient("client", client => client.BaseAddress = new Uri(builder.HostEnvironment.BaseAddress)) .AddHttpMessageHandler(sp => new ErrorHandlingMessageHandler(sp.GetRequiredService())); ```...
How can a Blazored Modal be unit tested? (I'm using the bUnit framework.) My modal component has a CascadingParameter BlazoredModalInstance. Clicking "OK" calls BlazoredModalInstance.CloseAsync(), and cancelling calls BlazoredModalInstance.CancelAsync(). The Blazored...
**Describe the bug** In the previous version ( 6.0.1 ), there used to be an unique identifier tied to the wrapper class of the modal. This was super helpful. If...
Please provide readonly access to the Stack of all visible Modal instances in `IModalService`. Suggestion. The enumeration would start with the topmost modal. ``` public interface IModalService { IEnumerable VisibleModals();...
"Back" functionality is neither prevented nor treated as "Close" resulting in the page receiving this event. Although it can be handled at this level, but would be straightforward to handle...
**Describe the bug** I have a lot of users, 500 to 1000, most of the errors are from the remaining js focustrap and clearbodystyles() **To Reproduce** users with latency **Expected...
**Is your feature request related to a problem? Please describe.** We use modals for a busy spinner, to show the user processing is being done and keep the user from...