'Override Asp.net ReportViewer toolbar pagination event

How to override the pagination click event of the Asp.net ReportViewer toolbar using jQuery or JavaScript?

enter image description here



Solution 1:[1]

The Following answer defines a style class that targets controls with ID.

    <style>
        /* this will remove the spinner */
        div#ReportViewer1_AsyncWait_Wait img{ display: none; } 
        /* this allows you to modify the td that contains the spinner */
        div#ReportViewer1_AsyncWait_Wait table tbody tr td:first-child{ background: red; width: 100px; height: 100px; } 
    </style>

Reportviewer control loading indicator in ASP.NET

I'm still looking for other solutions, i will add them if i found any.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Community