The unbind(eventName)
method of the HTML5 Report Viewer
Unbinds event handlers from the specified event.
Embedding Reports / Displaying Reports / Web Application / HTML5 Report Viewer / API Reference / ReportViewer / Methods
New to Telerik Reporting? Download free 30-day trial
unbind(eventName)
method of the HTML5 Report ViewerUnbinds event handlers from the specified event.
function onPageReady(e) {
console.log('page ready!');
}
var reportViewer = $("#reportViewer1").data("telerik_ReportViewer");
reportViewer.bind(telerikReportViewer.Events.PAGE_READY, onPageReady);
reportViewer.bind(telerikReportViewer.Events.PAGE_READY, function (e) {
console.log('page ready from anonymous function');
});
// later
reportViewer.unbind(telerikReportViewer.Events.PAGE_READY); // this will unbind ALL event handlers, including the anonymous.
Copyright © 2025 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.
Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.