Activities of "liangshiwei"

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

Answer

you can run the HttpApi.Host project to view see Swagger page.

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();
    }
}

Answer

Hi,

Payment server Blazor Ui(admin side) is available, Chat Blazor UI is in the roadmap, maybe version 5.1.

Answer

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?

Showing 4761 to 4770 of 6014 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 19, 2024, 12:56