-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
question about how to make level 2 sub menu using route congifuration #127
Comments
images of the problem and expected result please. to avoid different view of what sub and level is. |
barSidebarService example: baSidebarServiceProvider.addStaticItem({ I can see level 2 menu. Route configuration example: angular.module('BlurAdmin.pages.components', [ /** @ngInject */ angular.module('BlurAdmin.pages.components.mail', [ /** @ngInject */ angular.module('BlurAdmin.pages.components.mail.menu', []) /** @ngInject */ Result : I can't see level 2 menu. |
try using parent instead of writing route name with .state('mail.menu', {
parent: 'components'
}); try like that, |
@vazh still not working, tried |
is that how you wanted it ? |
i still have the same problem |
@heshamelmasry77 @DJPeace Did you could resolve the problem? |
@Davidmq96 I did not solve it. |
#337 try and replace getMenuItems in blur-admin/src/app/theme/components/baSidebar/baSidebar.service.js |
change the this.getMenuItems function body on src/app/theme/components/baSidebar/baSidebar.service.js to this: `
` Good luck, it worked for me |
You should go to "src/app/theme/components/baSidebar/baSidebar.service.js" and add this code.
|
Hello
I am working on the sidebar.
I succeeded in making level 2 sub menu using manual configuration explained on http://akveo.github.io/blur-admin/articles/051-sidebar/
But I could not make level 2 sub menu using router configuration even though level 1 sub menu was created.
Please, help me and let's me know how to make level 2 sub menu suing router configuration.
The text was updated successfully, but these errors were encountered: