Activities of "aZee"

Hello, I have tested the proposed solution using SUPPRESS_UNSAVED_CHANGES_WARNING, but unfortunately it does not resolve the initial issue. From my perspective, the only two possible solutions would be either to avoid the page refresh when LeptonX switches to mobile view (which is the case with Lepton), or to completely disable the mobile view.

The autoreply from the bot isn't helping me.

Hello,

I'm experiencing an issue with the LeptonX (Angular) theme that still occurs on the latest ABP version (9.2).

  • Steps to reproduce the issue:
  • create a fresh solution with abp studio
  • just an example :
    • open an edit or create dialog
    • start taping some content
    • drag and drop browser window to an other screen for example
    • everithing is lost -> This only happens if, during drag and drop, the window is “too” small and therefore the theme switches to “mobile” view.

This is problematic because end users can lose important work simply by moving the browser window between screens.

demo video

(This problem did not occur in the other Lepton theme)

Hello, I want to be able to customize the html code of the ConfirmationComponent, so this doesn't help.

Hello, is it possible to replace the ConfirmationComponent of “@abp/ng.theme.shared” using this method (https://abp.io/docs/latest/framework/ui/angular/component-replacement#how-to-replace-a-component)? I cannot find the key to use in : this.replaceableComponents.add({ component: YourNewRoleComponent, key: eIdentityComponents.Roles, });

  • ABP Framework version: v8.2.3
  • UI Type: Angular

Hello, thank you for your reply. However, I had to use the IServiceCollection.Replace method instead of Dependency attribute. Here's my working code : MyIdentitySessionDynamicClaimsPrincipalContributor.cs

public class MyIdentitySessionDynamicClaimsPrincipalContributor : IdentitySessionDynamicClaimsPrincipalContributor
{
    public override Task ContributeAsync(AbpClaimsPrincipalContributorContext context)
    {
        ...
    }
}

MyModule.cs

public class MyModule : AbpModule
{
    public override void ConfigureServices(ServiceConfigurationContext context)
    {
        ...
        context.Services.Replace(
            ServiceDescriptor.Transient<
            	IdentitySessionDynamicClaimsPrincipalContributor,
                MyIdentitySessionDynamicClaimsPrincipalContributor 
            >());
    }
}
  • ABP Framework version: v8.2.3

Hello, can I replace IdentitySessionDynamicClaimsPrincipalContributor with my own implementation? If so, how can I do it?

This isn't exactly what we're looking for: we want to keep the side menu layout, but with the toolbar on top.

ABP Framework version: 8.2.3 UI Type: Angular

LEPTON-X : Is it possible to have the toolbar at the top to obtain a layout similar to LEPTON?

Showing 1 to 9 of 9 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 04, 2025, 16:11