Hi in my grid i would like to use the fontawesome icons.
My toolbar definition is the following:
List<object> toolbarItems = new List<object>();
toolbarItems.Add(new { text = "Click", tooltipText = "Click", prefixIcon = "far fa-plus-square", id = "Click" });
Im my grid the toolbar is defined as following but the icon was not showed:
<ejs-grid id="ContractsGrid" allowPaging="true" locale="it" commandClick="commandClick"
rowDataBound="rowDataBound" dataBound="dataBound"
toolbar=toolbarItems>
How can achieve that?
Thanks
Stefano