如何使用jquery或javascript覆盖Asp.net ReportViewer工具栏的分页点击事件。 。
答案 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
我还在寻找其他解决方案,如果我发现任何解决方案,我会添加它们。