New to Telerik ReportingStart a free 30-day trial

The interactiveActionEnter(e, args) Event of the HTML5 Report Viewer

Occurs when the mouse cursor enters the area of an interactive action.

Parameters:

ParameterDescription
eThis 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.
argsAn object with the following properties:
  • element - the DOM element that triggered the action.
  • action - the current action instance.
JavaScript
// $(handler) is jQuery's shorthand for $(document).ready(handler)
$(function () {
	$("#reportViewer1").telerik_ReportViewer({
		serviceUrl: "api/reports/",
		reportSource: {
			report: "Telerik.Reporting.Examples.CSharp.ProductSales, CSharp.ReportLibrary"
		},
		interactiveActionEnter: function(e, args) {
			$(args.element).css('font-weight', 'bolder');
		}
	});
});

See Also

In this article
See Also
Not finding the help you need?
Contact Support