How can I modify the side menu, to add an item like the administration one with submenus items, is in razors pages netcore mvc, thank you.
-
ABP Framework version: 2.8
-
UI type: MVC
-
Tiered (MVC) or Identity Server Seperated (Angular): no
3 Answer(s)
-
0
hi
You can manage the menus in the
ConfigureMenuAsync
method.public class MyMenuContributor : IMenuContributor { public async Task ConfigureMenuAsync(MenuConfigurationContext context) { } }
-
0
I know thats the file, but I need create one item how ADMINISTRACION like this:
-
MenuPadre
-
Menu Hijo 1
-
Menu Hijo 2
-
Menu Hijo 3
-
-
Menu Padre 2
-
Menu Hijo 4
-
Menu Hijo 5
-
I see the GetAdministration() but i not undertand how reply this in other submenúes, sorry for ask, im new in this framework.
-
-
0
Its Ok:
`var CatalogoMenuItem = new ApplicationMenuItem(
"BibliotecaWeb.Regioness",
l["Menu:Regioness"],
icon: "fa fa-id-card-o");context.Menu.AddItem(CatalogoMenuItem);`
Later additem to CatalogoMenuItem, thanks so much, im confused.