PDFViewerEventBuilder
Defines the fluent API for configuring the Kendo UI PDFViewer for ASP.NET MVC events.
Methods
Render(System.String)
Fires when a page is rendered
For more information see Render event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the render event.
Render(System.Func)
Fires when a page is rendered
For more information see Render event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Open(System.String)
Fires when a PDF is opened in the viewer.
For more information see Open event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the open event.
Open(System.Func)
Fires when a PDF is opened in the viewer.
For more information see Open event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Error(System.String)
Fires when an error is encountered. By default, a dialog is shown with error message. The dialog will not be shown if the event is prevented.
For more information see Error event.
Parameters
handler - System.String
The name of the JavaScript function that will handle the error event.
Error(System.Func)
Fires when an error is encountered. By default, a dialog is shown with error message. The dialog will not be shown if the event is prevented.
For more information see Error event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.