Interface IClientEventsBuilder
Represents a builder that provides a way to initialize the event handlers of the report viewer.
Namespace: Telerik.ReportViewer.Mvc
Assembly: Telerik.ReportViewer.Mvc.dll
Syntax
public interface IClientEventsBuilder
Methods
Error(String)
Attach the event handler that will be called when an error occurs.
Declaration
IClientEventsBuilder Error(string onError)
Parameters
System. The name of the handler as string, without parentheses. |
Returns
ExportBegin(String)
Attach the event handler that will be called prior to starting the report export command.
Declaration
IClientEventsBuilder ExportBegin(string onExportBegin)
Parameters
System. The name of the handler as string, without parentheses. |
Returns
ExportEnd(String)
Attach the event handler that will be called when the exported document is ready for download, but prior to the actual downloading.
Declaration
IClientEventsBuilder ExportEnd(string onExportEnd)
Parameters
System. The name of the handler as string, without parentheses. |
Returns
InteractiveActionEnter(String)
Attach the event handler that will be called when the mouse cursor enters the action's report item area.
Declaration
IClientEventsBuilder InteractiveActionEnter(string onInteractiveActionEnter)
Parameters
System. The name of the handler as string, without parentheses. |
Returns
InteractiveActionExecuting(String)
Attach the event handler that will be called when an action is executed.
Declaration
IClientEventsBuilder InteractiveActionExecuting(string onInteractiveActionExecuting)
Parameters
System. The name of the handler as string, without parentheses. |
Returns
InteractiveActionLeave(String)
Attach the event handler that will be called when the mouse cursor leaves the action's report item area.
Declaration
IClientEventsBuilder InteractiveActionLeave(string onInteractiveActionLeave)
Parameters
System. The name of the handler as string, without parentheses. |
Returns
PageReady(String)
Attach the event handler that will be called every time a page from the report is rendered and ready for display.
Declaration
IClientEventsBuilder PageReady(string onPageReady)
Parameters
System. The name of the handler as string, without parentheses. |
Returns
PrintBegin(String)
Attach the event handler that will be called prior to starting the print report command.
Declaration
IClientEventsBuilder PrintBegin(string onPrintBegin)
Parameters
System. The name of the handler as string, without parentheses. |
Returns
PrintEnd(String)
Attach the event handler that will be called when the print document (Adobe PDF) is ready for download, but prior to being send to the printer.
Declaration
IClientEventsBuilder PrintEnd(string onPrintEnd)
Parameters
System. The name of the handler as string, without parentheses. |
Returns
Ready(String)
Attach the event handler that will be called when the report viewer template is loaded.
Declaration
IClientEventsBuilder Ready(string onReady)
Parameters
System. The name of the handler as string, without parentheses. |
Returns
RenderingBegin(String)
Attach the event handler that will be called when the rendering of the report begins.
Declaration
IClientEventsBuilder RenderingBegin(string onRenderingBegin)
Parameters
System. The name of the handler as string, without parentheses. |
Returns
RenderingEnd(String)
Attach the event handler that will be called when the rendering of the report ends.
Declaration
IClientEventsBuilder RenderingEnd(string onRenderingEnd)
Parameters
System. The name of the handler as string, without parentheses. |
Returns
UpdateUi(String)
Attach the event handler that will be called every time the UI needs an update; can be used for changing the UI of the report viewer while interacting with the reports.
Declaration
IClientEventsBuilder UpdateUi(string onUpdateUi)
Parameters
System. The name of the handler as string, without parentheses. |
Returns
ViewerToolTipOpening(String)
Attach the event handler that will be called when a tooltip is being opened.
Declaration
IClientEventsBuilder ViewerToolTipOpening(string onViewerToolTipOpening)
Parameters
System. The name of the handler as string, without parentheses. |