Check documentation for the latest version of dhtmlxSuite Font Awesome Icons in Menu DHTMLX Docs

Font Awesome Icons in Menu

You can use Font Awesome icons in dhtmlxMenu.

This possibility can be enabled in two ways:

1) during menu initialization

myMenu = new dhtmlXMenuObject({ 
    iconset: "awesome"
});

2) after menu initialization, using the setIconset method:

myMenu.setIconset("awesome");

Related sample:  Font awesome

Follow the Font Awesome homepage to learn more about icons.

Back to top