Ends in:
0 DAY
21 HRS
37 MIN
29 SEC
Ends in:
0 D
21 H
37 M
29 S

Activities of "murat.kebabci"

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,
      },
]);

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 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 });

Module

?

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',
    });
  }
}

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;

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 Arman,

Thank you for information.

Best regard

  • ABP Framework version: v6.0.3
  • UI type: Angular
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes
  • Exception message and stack trace:
  • ---------- Exception Data ---------- Severity = ERROR InvariantSeverity = ERROR SqlState = 0A000 MessageText = nondeterministic collations are not supported for substring searches File = varlena.c Line = 1209 Routine = text_position_setup
  • Steps to reproduce the issue:
  • Hello,
  • There is a filtering issue on administration pages that with search bar for the application that has a postgresql database. It causes error on the user interface when user wants to use search bar. In our application, we set the collation in filtering for such cases. Since ABP supports postgresql, can you fix related repository methods?
Showing 11 to 20 of 26 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on December 05, 2024, 12:19