How to add custom button in PDF Viewer default toolbar
PDF Viewer
The ASP.NET MVC PDF Viewer control supports viewing, reviewing, and printing PDF files in ASP.NET MVC applications. The hyperlink and table of contents support provides easy navigation within and outside the PDF files. The form-filling support provides a platform to fill, flatten, save, and print PDF files with AcroForm. PDF files can be reviewed with text markup annotation tools.
Adding custom buttons in PDF Viewer toolbar
PDF Viewer for ASP.NET MVC provides support to add the custom buttons in its default toolbar.
Refer to the following code snippet to add the custom buttons by appending it in the PDF Viewer default toolbar.
JavaScript
$(function () {
var pdfviewerObj = $("#pdfviewer").data("ejPdfViewer");
//Hides the download icon from the default toolbar
pdfviewerObj .showDownloadTool(false);
var pdfviewerElement = pdfviewerObj .element[0];
//Gets the default toolbar
var toolbar = pdfviewerElement.firstElementChild.firstElementChild;
var role = $(toolbar).attr("role");
if (role == "toolbar") {
//Appends the custom button to default toolbar
$(toolbar).append($('<input type="button" value="Save" style="width:90px;height:30px;margin-top:6px;float:right" onclick=download(); title="Downloads the PDF document"/>'));
}
});
Here, HTML button is appended in the default toolbar. You can add your own custom button in place of the added HTML button.
Sample link:
https://www.syncfusion.com/downloads/support/directtrac/general/ze/PdfViewer_CustomButton-217993277
Executing the previously given sample will provide the output as follows. Clicking on “Save” will download the PDF document.
You can find the PDF Viewer’s other options like adding Toolbar Customization, TextMarkup annotation, and Handwritten Signature features here with code examples.
Refer here to explore the rich set of PDF Viewer features.
An online demo link to view PDF documents using Syncfusion PDF Viewer.
See Also:
https://www.syncfusion.com/jquery/aspnet-web-forms-ui-controls/pdf-viewer
https://www.syncfusion.com/jquery/javascript-ui-controls/pdf-viewer
https://www.syncfusion.com/uwp-ui-controls/pdf-viewer
https://www.syncfusion.com/winforms-ui-controls/pdf-viewer
https://www.syncfusion.com/wpf-ui-controls/pdf-viewer
https://www.syncfusion.com/xamarin-ui-controls/pdf-viewer