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)
- 
    0hi You can manage the menus in the ConfigureMenuAsyncmethod.https://github.com/abpframework/abp/blob/ace4b5526eb00d0ed6429834693fc618dc6c54b2/modules/identity/src/Volo.Abp.Identity.Web/Navigation/AbpIdentityWebMainMenuContributor.cs#L31 public class MyMenuContributor : IMenuContributor { public async Task ConfigureMenuAsync(MenuConfigurationContext context) { } }
- 
    0I 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. 
- MenuPadre
- 
    0Its 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. 
 
                                