hi
Please check the Application Event Logs
https://www.devtopics.com/how-to-check-the-application-event-log-for-errors/ https://docs.microsoft.com/en-us/aspnet/core/test/troubleshoot-azure-iis?view=aspnetcore-7.0#50030-in-process-startup-failure
hi
https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/UserManagement.razor#L49 https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/UserManagement.razor#L166
Add this to your component base class.
protected virtual Task ClosingCreateModal(ModalClosingEventArgs eventArgs)
{
// cancel close if clicked outside of modal area
eventArgs.Cancel = eventArgs.CloseReason == CloseReason.FocusLostClosing;
return Task.CompletedTask;
}
protected virtual Task ClosingEditModal(ModalClosingEventArgs eventArgs)
{
// cancel close if clicked outside of modal area
eventArgs.Cancel = eventArgs.CloseReason == CloseReason.FocusLostClosing;
return Task.CompletedTask;
}
You add <Modal @ref="xxxx" Closing="@ClosingEditModal">
or <Modal @ref="xxxx" Closing="@ClosingCreateModal">
to your model.
ok I will check the code.
Yes, We will update this in the next patch version.
hi
Please try to replace all UseSwaggerUI
with UseAbpSwaggerUI
in your project.
ok I will check it again
ok, I got this, I will try to refresh the swagger page after the authcatation.
open product service api and authenticate with WebGateway_Swagger account
Refresh the swagger API page works?
You can bind an event callback for this button and get the latest data from the backend, then update the values.