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 に答える