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
},
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
}
]);
};
Also, check this documentation for reference https://docs.abp.io/en/commercial/latest/tutorials/book-store/part-2?UI=NG&DB=EF#routing
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