New to Telerik Reporting? Download free 30-day trial
interactiveActionLeave(e, args)
Occurs when the mouse cursor leaves the area of an interactive action.
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 the following properties:
|
// $(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" }, interactiveActionLeave: function(e, args) { $(args.element).css('font-weight', 'normal'); } });