New to Telerik Reporting? Download free 30-day trial
sendEmailBegin(e, args)
Occurs before the report is exported and the E-mail message is sent.
Parameters:
Parameter | Description |
---|---|
e | This is the jQuery.Event object and e.data is respectively jQuery's event.data. e.data.sender is the report viewer that raised the event. |
args | An object with properties:
|
// $(handler) is jQuery's shorthand for $(document).ready(handler) $(function () { $("#reportViewer1").telerik_ReportViewer({ serviceUrl: "api/reports/", reportSource: { report: "Telerik.Reporting.Examples.CSharp.Invoice, CSharp.ReportLibrary" }, sendEmailBegin: function(e) { console.log("This event handler will be called before exporting the report in " + arguments.format + " and sending the E-mail message"); } });