Activities of "murat.kebabci"

Hi,

I want to customize your login page. But I want to use components separately. For example, I will use a language component under the page, use tenant component at the top of page. But I don't want to use css. Can I use your angular components as I explain and how?

Hi, I am updating 3.0.5 to 3.1.2, But Login button of home page not work. I can't login. Is there any config I don't know? And then I have created a empty project. The problem continues.

"@volo/abp.ng.account": "~3.1.2",
"@volo/abp.ng.audit-logging": "~3.1.2",
"@volo/abp.ng.identity": "~3.1.2",
"@volo/abp.ng.identity-server": "~3.1.2",
"@volo/abp.ng.language-management": "~3.1.2",
"@volo/abp.ng.saas": "~3.1.2",
"@volo/abp.ng.text-template-management": "~3.1.2",
"@volo/abp.ng.theme.lepton": "~3.1.2",

This code is not redirect and not push login page!

login() {
    this.authService.initLogin();
  }

I wrote account/login a[href] tag on home page, but not work!

This is my env.

import { Config } from '@abp/ng.core';

const baseUrl = 'http://localhost:4200';

export const environment = {
  production: false,
  application: {
    baseUrl,
    name: 'XXX',
  },
  oAuthConfig: {
    issuer: 'http://localhost:5002',
    redirectUri: baseUrl,
    clientId: 'XXX_App',
    responseType: 'code',
    scope: 'offline_access XXX',
  },
  apis: {
    default: {
      url: 'http://localhost:5001',
      rootNamespace: 'XXX',
    },
  },
} as Config.Environment;

Yes. There is my menu but no settings tab. Below block is not working.

export class MyModuleConfigService {
constructor(
    private restService: RestService,
    private settingTabs: SettingTabsService
  ) {
    this.settingTabs.add([
      {
        component: MyModuleSettingsComponent,
        name: MyModuleSettingsName,
        order: 3,
      },
    ]);
  }

  getSettings(): Observable<void> {
    return this.restService.request<void, void>({
      method: 'GET',
      url: '/api/MyModuleConfig/Settings',
    });
  }
}

?

Module

Hi Mehmet,

Thank you for your answer. But I want to know how to add new tab of Setting Management page from npm package.

I used to use below block in service page.

addSettingTab({ component: MySettingsComponents, name: 'SettingsMenu', order: 1 });

Yes Angular UI but not contains my problem. I need how to use settings tab in npm package (for example your setting-management npm package)? Not dev app.

Hi,

I am upgrading my npm package v2.9.0 to v3.0.5. I created custum settings page in service page.

addSettingTab({
  component: MySettingsComponents,
  name: 'SettingsMenu',
  order: 1
});

How can I use settings tab in my npm package? Custom page link

Old and new version is not working. Which page should use this module?

this.settingTabs.add([
      {
        component: MySettingsComponents,
        name: 'MySettingsComponents',
        order: 1,
      },
]);

The error is done but the issue remains. Browser chrome.

"@angular/animations": "~9.1.0", "@angular/common": "~9.1.0", "@angular/compiler": "~9.1.0", "@angular/core": "~9.1.0", "@angular/forms": "~9.1.0", "@angular/platform-browser": "~9.1.0", "@angular/platform-browser-dynamic": "~9.1.0", "@angular/router": "~9.1.0",

├─ @abp/ng.core@2.8.0 ├─ @abp/ng.feature-management@2.8.0 ├─ @abp/ng.permission-management@2.8.0 ├─ @abp/ng.setting-management.config@2.8.0 ├─ @abp/ng.setting-management@2.8.0 ├─ @abp/ng.theme.shared@2.8.0 ├─ @abp/utils@2.8.0 ├─ @volo/abp.commercial.ng.ui@2.8.0 ├─ @volo/abp.ng.account.config@2.8.0 ├─ @volo/abp.ng.account@2.8.0 ├─ @volo/abp.ng.audit-logging.config@2.8.0 ├─ @volo/abp.ng.audit-logging@2.8.0 ├─ @volo/abp.ng.identity-server.config@2.8.0 ├─ @volo/abp.ng.identity-server@2.8.0 ├─ @volo/abp.ng.identity.config@2.8.0 ├─ @volo/abp.ng.identity@2.8.0 ├─ @volo/abp.ng.language-management.config@2.8.0 ├─ @volo/abp.ng.language-management@2.8.0 ├─ @volo/abp.ng.saas.config@2.8.0 ├─ @volo/abp.ng.saas@2.8.0 ├─ @volo/abp.ng.text-template-management.config@2.8.0 ├─ @volo/abp.ng.text-template-management@2.8.0 └─ @volo/abp.ng.theme.lepton@2.8.0

Question

Users, Roles , Claim type, Languages, Audit Logs page are not showing data. Removed node modules, yarn and package-lock. And then installation all packages. Packages versions;

This is error

This is error line. I am using open on hover menu.

Showing 11 to 20 of 28 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.1.0-preview. Updated on October 17, 2025, 13:15