Activities of "FPT_TuyenDN1"

If you want to add component to navbar, you can replace Navbar and NavbarMobile.

constructor(replaceableComponents: ReplaceableComponentsService) { 
 
  replaceableComponents.add({ 
    component: YourComponent,    key: eThemeLeptonComponents.Navbar,  });   
 
replaceableComponents.add({ 
    component: YourMobileComponent,    key: eThemeLeptonComponents.NavbarMobile,  });} 

and also you can import like below.

import { ReplaceableComponentsService } from '@abp/ng.core'; 
import { eThemeLeptonComponents } from '@volo/abp.ng.theme.lepton'; 

Thanks it worked

  • ABP Framework version: v6.0.0
  • UI type: MVC
  • DB provider: EF Core

Hi team! When I deploy my app AuthenService theme LeptonX with domain sub folder, it cannot find theme with my route. it find to default domain folder. How to change it to find my route ex: mydomain/authserver/Themes/LeptonX/Global/side-menu/css/bootstrap-dim.css

  • ABP Framework version: v5.3.0
  • UI type: Angular
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes

Hi team I want to move nav-items to the top like this in mobile view. How I can do it?

hello, I want to change my menu placement to top in lepthon x. How I do that?

ABP Framework version: v6.0.0 abp.ng.theme.lepton-x: 1.0.0-rc.7 UI type: Angular

DB provider: EF Core

Tiered (MVC) or Identity Server Separated (Angular): yes

Hello,

The top menu layout will available in the next versions.

You can change the default theme with the following code:

//app.module.ts 
import { NgModule } from '@angular/core'; 
import { lightTheme, LPX_THEME_STYLES_DEFAULTS, LPX_THEMES } from '@volosoft/ngx-lepton-x'; 
 
 
 
function setLpxThemes() { 
  const themes = LPX_THEME_STYLES_DEFAULTS.map(style => 
    Object.assign({}, style, { 
      defaultTheme: style.styleName === lightTheme.styleName, 
    }) 
  ); 
  return themes; 
} 
 
@NgModule({ 
  imports: [ /* imports */], 
  declarations: [/*declarations*/], 
  providers: [ 
    // ...other providers 
    { 
      provide: LPX_THEMES, 
      useFactory: setLpxThemes 
    }, 
  ], 
  bootstrap: [/*bootstrap comp*/], 
}) 
export class AppModule {} 
 

thank you, it's worked. I also want to set default auto collapse menu like this How I do that?

hello, I want to set default theme in leptonX to light and change my menu placementto top in lepthon x. How I do that?

ABP Framework version: v5.3.3

UI type: Angular

DB provider: EF Core

Tiered (MVC) or Identity Server Separated (Angular): yes

Hello,

The top menu layout is not available for now. It will be available in the next stable version

Hi muhammedaltug What is the estimate timeline for the next stable version ?

  • ABP Framework version: v5.3.0
  • UI type: Angular
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

Hi! I have installed leptonX theme for angular. Currently I see menu is showing default sidemenu. I want to put that menu on top. How can I do it? Thanks

Showing 11 to 18 of 18 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11