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

Font Awesome Icons in Ribbon

You can use Font Awesome icons in dhtmlxRibbon.

This possibility can be enabled in two ways:

1) during ribbon initialization

myRibbon = new dhtmlXRibbon({   
    iconset: "awesome"
});

2) after ribbon initialization, using the setIconset method:

myRibbon.setIconset("awesome");

Related sample:  Font awesome

Follow the Font Awesome homepage to learn more about icons.

Back to top