Activities of "liangshiwei"

Answer

Use CurrentTenant.Change for per tenant : https://docs.abp.io/en/abp/latest/Multi-Tenancy#change-the-current-tenant

Answer

Resolved. You need to queue a job item: https://docs.abp.io/en/abp/latest/Background-Jobs#queue-a-job-item

Hi,

See: https://docs.abp.io/en/abp/latest/Timing

Configure<AbpClockOptions>(options =>
{
    options.Kind = DateTimeKind.Local;
});

Hi,

Currently ABP does not support custom cancellationToken.

We have create an issue to enhance: https://github.com/abpframework/abp/issues/9668

Hi,

You can separate the modal page and the data page, peplace the data page when you load the next page of data, not modal

Like:

HotelSearchModal, HotelSearchModalDataList.

Hi,

Can you explain in detail?

Answer

HI,

Sorry, should be shiwei.liang@volosoft.com

Hi,

Sorry, but this information is not enough for me to reproduce the problem

Can you create a project to reproduce? thanks. you can send it to my email : shiwei.liang@volosoft.com

Hi,

I can't reproduce the problem, can you provide more infomartion?

public async Task OnGetAsync()
{
    if (CurrentUser.IsAuthenticated)
    {
        var stringBuilder = new StringBuilder();
        stringBuilder.AppendLine($"Current tenant: {CurrentTenant.Name}");
        stringBuilder.AppendLine($"  Products.Blazer: {await _featureChecker.IsEnabledAsync("Products.Blazer")}");
        stringBuilder.AppendLine($"  Products.Blazer: {await _featureChecker.IsEnabledAsync("Products.Trouser")}");

        Features = stringBuilder.ToString();
    }
}

Answer

Hi,

About question 1:

See https://support.abp.io/QA/Questions/1571/Can-edit-language-Texts-only-as-host-admin-not-possible-as-tenant-admin

For now, you can try:

Find default-language-texts-entity-actions.ts and replace LanguageManagement.Languages.Edit to LanguageManagement.LanguageTexts.Edit

Showing 5461 to 5470 of 6466 entries
Made with ❤️ on ABP v9.2.0-preview. Updated on January 15, 2025, 12:18