Activities of "Anjali_Musmade"

Hello,

You can create a custom css file under the wwwroot folder and add that custom css file to BundleContributor.

Please refer to this similar issue for adding custom css files https://support.abp.io/QA/Questions/5193/How-to-add-custom-CSS-files-in-solution-and-render-them or you may refer to this doc https://docs.abp.io/en/abp/latest/UI/Blazor/Global-Scripts-Styles

thanks

Hello,

Please share some sample codes by mail at support@abp.io, and mention your ticket number in the mail. Then I can help you better.

Thanks

Hello,

Please make sure in Crud Page Generator you have selected the check box for the user interface as highlighted in screen shot

Thanks

Hello,

Whenever the route does not match then it automatically redirects to home. I have one example please check yours accordingly

{
        path: '/book-store',
        name: '::Menu:BookStore',
        iconClass: 'fas fa-book',
        order: 101,
        layout: eLayoutType.application,
      },
     {
        path: '/books1',
        name: '::Menu:Books1',
        parentName: '::Menu:BookStore',
        layout: eLayoutType.application
      },
      {
        path: '/books2',
        name: '::Menu:Books2',
        parentName: '::Menu:Books1',
        layout: eLayoutType.application
      },

it will result in this

please let me know if anything needed.

Thanks

Hello,

Sorry it's my bad. I apologise for your inconvenience. I will check again and get back to you asap.

Thanks

Hello,

Please Check this https://docs.abp.io/en/abp/latest/UI/Angular/Modifying-the-Menu#how-to-patch-or-remove-a-navigation-element

Thanks

Hello,

You may set padding in blazor-bundle.css file in the class

.b-table.table tbody th, .b-table.table tbody td {
  padding: 1rem 1.25rem !important;
  vertical-align: middle;
}

You can download LeaptonX source code and check for the code

Thanks

Hello,

I have done something like shown in Video

for that, I have created a button in Book3 and after clicking on it, it will redirect to Book2

 onBook2Click() {
       this.router.navigate(['/books2']);
    }

Thanks

Hello,

For that you have to add your menuitems in MyApp\angular\src\app\route.provider.ts file just like I have done

function configureRoutes(routes: RoutesService) {
  return () => {
    routes.add([
      {
        path: '/',
        name: '::Menu:Home',
        iconClass: 'fas fa-home',
        order: 1,
        layout: eLayoutType.application,
      },
      {
        path: '/dashboard',
        name: '::Menu:Dashboard',
        iconClass: 'fas fa-chart-line',
        order: 2,
        layout: eLayoutType.application,
        requiredPolicy: 'Ticket7368.Dashboard.Host  || Ticket7368.Dashboard.Tenant',
      },
      //I have added the below code you can customize it as per your requirement
      {
        path: '/book-store',
        name: '::Menu:BookStore',
        iconClass: 'fas fa-book',
        order: 101,
        layout: eLayoutType.application,
      },
      {
        path: '/books',
        name: '::Menu:Books',
        parentName: '::Menu:BookStore',
        layout: eLayoutType.application
      },
      {
        path: '/books1',
        name: '::Menu:Books1',
        parentName: '::Menu:BookStore',
        layout: eLayoutType.application
      },
      {
        path: '/books2',
        name: '::Menu:Books2',
        parentName: '::Menu:BookStore',
        layout: eLayoutType.application
      },
      {
        path: '/books3',
        name: '::Menu:Books3',
        parentName: '::Menu:BookStore',
        layout: eLayoutType.application
      }
    ]);
  };

It results like

Also, check this documentation for reference https://docs.abp.io/en/commercial/latest/tutorials/book-store/part-2?UI=NG&DB=EF#routing

Thanks

Hello,

Are you expecting something like this -

please let me know.

thanks

Showing 321 to 330 of 1341 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 12, 2025, 10:20