0
cleverplatform created
2 Answer(s)
-
0
Hi, you can define the icon when defining a new menu item like below:
context.Menu.AddItem( new ApplicationMenuItem("MyProject.Crm", l["Menu:CRM"]) .AddItem(new ApplicationMenuItem( name: "Name", displayName: "Display", url: "/crm/my-url", icon: "fa fa-tag" //define your Font Awesome icon here. ) ));
- Manipulating existing menu item and changing the icon of it, please see the Navigation Menu documentation.
-
0
Thanks Engincan.