编程语言
首页 > 编程语言> > javascript – ASP.NET中的Reportviewer控件加载指示器

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

作者:互联网

我只是用新主题为我的网站设置外观,是否可以更改ReportViewer控件的加载图像(绿色)?

我尝试了一些建议的解决方案,但它不起作用,任何人都可以指导我吗?

解决方法:

您始终可以使用CSS对其进行修改.

如果您调查从ReportViewer控件呈现的HTML,应该有一个< div>叫[ID_of_control] _AsyncWait_Wait

在我的,我有css;

<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>

您需要做的就是在div#ReportViewer1_AsyncWait_Wait table tbody tr td:first-child上设置背景图像,以便拥有自己的自定义图像.

标签:reportviewer,javascript,css,asp-net,reporting-services
来源: https://codeday.me/bug/20190826/1728849.html