Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I think we cannot change the loading message in SSRS. Its only the get property.</p> <p><a href="http://msdn.microsoft.com/en-us/library/microsoft.reporting.webforms.ireportviewermessages.progresstext.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/microsoft.reporting.webforms.ireportviewermessages.progresstext.aspx</a> </p> <p>The above link is the reason why I am telling we cannot change.</p> <p>We can change this message in the ASP.NET Application that I had done with the javascript code.</p> <p>To change spinningWheel loading Indicator the solution is we have to go for windows or web application as @Harri link says. </p> <p>To change the message I used the ASP.NET Application. Now it is changed when the parameters are refreshed after selecting. Still in some places I have to change.</p> <p><strong>Source after browsing:</strong></p> <pre><code>&lt;div id="ReportViewerDisplay_AsyncWait_Wait" style="cursor:wait;background-color:#DC9CE4;padding:15px;border:1px solid black;display:none;position:absolute;"&gt; &lt;table height="100%"&gt; &lt;tr&gt; &lt;td width="32px" height="32px"&gt; &lt;img src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;amp;Version=10.0.30319.1&amp;amp;Name=Microsoft.Reporting.WebForms.Icons.SpinningWheel.gif" style="height:32px;width:32px;"/&gt; &lt;/td&gt; &lt;td style="vertical-align:middle;text-align:center;"&gt; &lt;span style="font-family:Verdana;font-size:14pt;"&gt;Loading...&lt;/span&gt; &lt;div style="margin-top:3px;"&gt; &lt;a href="javascript:$get(&amp;#39;ReportViewerDisplay_AsyncWait&amp;#39;).control._cancelCurrentPostback();" style="font-family:Verdana;font-size:8pt;color:#3366CC;"&gt;Cancel&lt;/a&gt; &lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; </code></pre> <p><strong>ASP Design Page:</strong> function get(arg) {</p> <pre><code> var divTag = document.getElementsByName('ReportViewerDisplay_AsyncWait_Wait'); if (divTag != null ) { var tableTag = divTag.item(0); var rowTag = tableTag.childNodes[0]; var columnTag = rowTag.childNodes[0]; var tdtag = columnTag.childNodes[0]; var spantag = tdtag.childNodes[0].nextSibling.childNodes[0]; spantag.outerText = arg; } }; &lt;/script&gt; </code></pre> <p><strong>Code Behind:</strong></p> <pre><code>protected void ReportViewerDisplay_PreRender(object sender, EventArgs e) { ClientScriptManager cs = Page.ClientScript; cs.RegisterStartupScript(typeof(Page), "PrintScript_" + UniqueID, "get('Please Wait');", true); } </code></pre> <p>Note: ReportViewerDisplay is the Id of the ReportViewer control change accordingly</p> <p>If you agree with this mark this answer as useful.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload