Activities of "FPT_TuyenDN1"

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,

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 ?

Showing 11 to 12 of 12 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
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 15, 2025, 14:41