No, As I said you try to replace the AbpSelectTagHelperService instead of AbpTagHelperService<AbpSelectTagHelper>, AbpSelectTagHelper
For example:
[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(AbpSelectTagHelperService))]
public class MySelectTagHelperService : AbpSelectTagHelperService
{
public MySelectTagHelperService(IHtmlGenerator generator, HtmlEncoder encoder, IAbpTagHelperLocalizer tagHelperLocalizer, IStringLocalizerFactory stringLocalizerFactory, IAbpEnumLocalizer abpEnumLocalizer) : base(generator, encoder, tagHelperLocalizer, stringLocalizerFactory, abpEnumLocalizer)
{
}
public override void Process(TagHelperContext context, TagHelperOutput output)
{
...
base.Process(context, output);
}
}
Hi,
You should see code like this in your project, please comment on these codes.
AddResponseCompression
UseResponseCompression
Hi,
I guess you are using the Response compression.
Can you try to disable it to test again?
Hi,
Sorry,I just realized you are using the Blazor UI.
You need to replace the TenantManagement.razor
Is there a way I can take a look at the original source code
You can download the source code using the ABP suite.
Here is the document: https://docs.abp.io/en/abp/latest/UI/Blazor/Customization-Overriding-Components
Hi,
You need to customize the leptonx by replacing the component, I can provide an example if you needed.
Hi,
ABP will override the default value using the setting value
https://github.com/abpframework/abp/blob/260507ff4ed476d42efbd2012c545adf99bb0c28/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/AbpIdentityOptionsManager.cs
You need to call the SetAsync first: https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.Application/Volo/Abp/Identity/IdentityUserAppService.cs
protected IOptions<IdentityOptions> IdentityOptions { get; }
....
await IdentityOptions.SetAsync();
Hi,
You can override the page if you want.
/Pages/Saas/Host/Tenants/ImpersonateTenantModal.cshtml
/Pages/Saas/Host/Tenants/ImpersonateTenantModal.cshtml.cs
Hi,
You can try to replace the AbpSelectTagHelperService.
[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(AbpSelectTagHelperService))]
public class MySelectTagHelperService : AbpSelectTagHelperService
Can you share the full error logs?