覆盖Asp.net ReportViewer工具栏分页事件

时间:2013-02-01 12:21:57

标签: javascript jquery asp.net javascript-events reportviewer

如何使用jquery或javascript覆盖Asp.net ReportViewer工具栏的分页点击事件。 。 enter image description here

1 个答案:

答案 0 :(得分:0)

以下答案定义了一个以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

我还在寻找其他解决方案,如果我发现任何解决方案,我会添加它们。

相关问题