Activities of "Anjali_Musmade"

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

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

Showing 171 to 180 of 1189 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11