Activities of "Anjali_Musmade"

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

Hi,

Great I will refund your credit and closing the ticket.

Thanks

Hello,

Could you please provide steps to reproduce or any code snippet you use for grid?

Thanks

Hello,

Please try to re-login and then try to create a microservice application.

Hello,

Do you have an ABP commercial license?, microservice is available for ABP Commercial only and not for ABP Framework.
If you have then please check whether your ABP CLI and ABP Suite versions are the same. please provide your ABP version

thanks

Showing 71 to 80 of 1087 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30