Category / Section
How can I add custom icon in Syncfusion Angular ReportViewer toolbar?
2 mins read
Syncfusion Angular ReportViewer allows you to add or modify an icon to customize the standard toolbar. The following code snippet illustrates how to add the Mail icon to the ReportViewer toolbar container using the template.
export class AppComponent { public serviceUrl: string; public reportPath: string; public serverUrl: string; public parameters: any; public actionbuttons: any; constructor() { this.serviceUrl = 'http://localhost:53800/Home'; this.reportPath = 'GroupingAgg.rdl'; } reportLoaded(event) { var viewerID = "reportViewer_Control"; var $ulContainer = $("#" + viewerID + "_toolbarContainer "); var $divouter = ej.buildTag("ul.e-reportviewer-toolbarul e-ul e-horizontal ", "", {}, {}); var $lifil = ej.buildTag("li.e-reportviewer-toolbarli e-tooltxt", "", { 'display': 'inline-block', }, { 'id': viewerID + '_toolbar_fil', 'title': 'Mail' }); var $spanfil = ej.buildTag("span.e-icon e-mail e-reportviewer-icon", "", {}, { 'id': viewerID + '_toolbar_fil' }); $divouter.append($lifil); $lifil.append($spanfil); $ulContainer.append($divouter); $lifil.hover(function () { $lifil.addClass("e-hover"); }, function () { $lifil.removeClass("e-hover"); }); $divouter.click(function (e) { alert('Action Triggered'); }); } }
Run the application, the additional custom icon is added to the ReportViewer toolbar as shown in the following output snap.
Sample
Download the custom icon toolbar sample from here
Download the Web API report controller sample from here