1

如何使用 jQuery 或 JavaScript 覆盖 Asp.net ReportViewer 工具栏的分页点击事件?

在此处输入图像描述

4

1 回答 1

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>

ASP.NET 中的 Reportviewer 控件加载指示器

我还在寻找其他解决方案,如果我找到了,我会添加它们。

于 2013-02-20T10:12:21.183 回答