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

Font Awesome Icons in Toolbar

You can use Font Awesome icons in dhtmlxMenu.

This possibility can be enabled in two ways:

1) during toolbar initialization

myToolbar = new dhtmlXToolbarObject({
    iconset: "awesome",
});

2) after toolbar initialization, using the setIconset method:

myToolbar.setIconset("awesome");

Related sample:  Font awesome

Follow the Font Awesome homepage to learn more about icons.

Back to top