Hi,
You can put it to the .Blazor
project
Hi,
Maybe you can check: https://docs.abp.io/en/abp/4.4/UI/AspNetCore/Modals
Hi,
You can try:
[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(UserManagement))]
public class MyUserManagement : UserManagement
{
protected override async Task OnCreatingEntityAsync()
{
if (NewEntity.Name.IsNullOrWhiteSpace())
{
throw new UserFriendlyException("Name can not be null");
}
await base.OnCreatingEntityAsync();
}
}
Hi,
Payment server Blazor Ui(admin side) is available, Chat Blazor UI is in the roadmap, maybe version 5.1.
See:
https://docs.abp.io/en/abp/latest/Startup-Templates/Application#how-to-run https://docs.abp.io/en/abp/latest/Startup-Templates/Module#how-to-run
Hi,
You can try:
$.ajax({
url: "/FileManagement",
dataType: "text/html",
success:function(html){
$("#modalBodyId").html(html);
$("#modalId").modal('show');
}
})
HI,
I will check it out.
Hi,
Seems like you are using Blazor UI.
Can you check this: https://docs.abp.io/en/abp/latest/Modules/Setting-Management#blazor-ui?
You can also refer this: https://github.com/abpframework/abp/blob/dev/modules/setting-management/src/Volo.Abp.SettingManagement.Blazor/Settings/EmailingPageContributor.cs
Hi,
Can you share your code and full logs?