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
Hello,
Please try to re-login and then try to create a microservice application.
Hello,
I have generate BookModule
using this command
yarn ng generate module book --module app --routing --route books
I have added below code to route.provider.ts
{
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
}
After that I have added one more child here Author
using this command generate author component
yarn ng generate module author --module app --routing --route authors
I have added below code in route.provider.ts
{
path: '/authors',
name: '::Menu:Authors',
parentName: '::Menu:BookStore',
layout: eLayoutType.application,
}
After that I have add permission for Author tab
{
path: '/authors',
name: '::Menu:Authors',
parentName: '::Menu:BookStore',
layout: eLayoutType.application,
requiredPolicy: 'BookStore.Authors',
}
After disabling the permissions for Auther, the final result will look like this - the author menu get hide
Thanks.
Hello,
Please check out https://docs.abp.io/en/commercial/latest/tutorials/book-store/part-9?UI=NG&DB=EF#menu-definition if it helps you. I will try to reproduce the issue and will revert back again.
Thanks