3

新しいテーマでサイトをスキニングしていましたが、ReportViewer コントロールの読み込みイメージ (緑色) を変更することはできますか?

提案されたいくつかの解決策を試しましたが、うまくいきません。これについて誰か教えてもらえますか? ここに画像の説明を入力

4

2 に答える 2

6

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>

独自のカスタム イメージを作成するには、background-imageオンに設定するだけです。div#ReportViewer1_AsyncWait_Wait table tbody tr td:first-child

于 2012-05-28T14:09:01.963 に答える