【发布时间】:2013-02-01 12:21:56
【问题描述】:
如何使用jQuery或JavaScript覆盖Asp.net ReportViewer工具栏的分页点击事件?
【问题讨论】:
标签: javascript jquery asp.net jquery-events reportviewer
如何使用jQuery或JavaScript覆盖Asp.net ReportViewer工具栏的分页点击事件?
【问题讨论】:
标签: javascript jquery asp.net jquery-events reportviewer
以下答案定义了一个样式类,该类以具有 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
我还在寻找其他解决方案,如果我找到了,我会添加它们。
【讨论】: