Open Closed

Add custom settings to Administration page in Angular #6292


User avatar
0
dev@veek.vn created

Hi,

I was wondering if there is a way to add additional settings to Administration pages,

Beside, I want to add main menu and sub menus in Angular?

ABP Framework version: v.7.3.2 UI Type: Angular Database System: MongoDB Tiered (for MVC) or Auth Server Separated (for Angular): yes Exception message and full stack trace: Steps to reproduce the issue:


8 Answer(s)
  • User Avatar
    0
    liangshiwei created
    Support Team Fullstack Developer

    Hi

    You can check those:

    https://docs.abp.io/en/abp/latest/Modules/Setting-Management#angular-ui https://docs.abp.io/en/abp/latest/UI/Angular/Modifying-the-Menu#how-to-add-a-navigation-element

  • User Avatar
    0
    dev@veek.vn created

    I mean Administration, not Setting tab

  • User Avatar
    0
    dev@veek.vn created

  • User Avatar
    0
    liangshiwei created
    Support Team Fullstack Developer

    See: https://docs.abp.io/en/abp/latest/UI/Angular/Modifying-the-Menu#how-to-add-a-navigation-element

    For example:

     {
        path: '/your-path',
        name: 'Your navigation',
        parentName: eThemeSharedRouteNames.Administration
        order: 101,
        iconClass: 'fas fa-question-circle',
        requiredPolicy: 'permission key here',
        layout: eLayoutType.application,
      },
    
  • User Avatar
    0
    dev@veek.vn created

    How about registering the route for that? I mean, click on the menu to open my component

  • User Avatar
    0
    liangshiwei created
    Support Team Fullstack Developer

    Hi,

    How about registering the route for that? I mean, click on the menu to open my component

    It uses routing to reach components.

    Maybe you can check the Tutorials first: https://docs.abp.io/en/commercial/latest/tutorials/book-store/part-1?UI=NG&DB=EF

  • User Avatar
    0
    dev@veek.vn created

    It works now :D

    thank you @liangshiwei

  • User Avatar
    0
    liangshiwei created
    Support Team Fullstack Developer

    : )

Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11