We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
Starting in 2019, the Reporting control is no longer included in Essential Studio. If you're experiencing issues with the Syncfusion Reporting Platform, Report Viewer, Report Designer, or Report Writer, we recommend migrating to Bold Reports, our dedicated reporting platform.

Bold Reports offers a comprehensive suite of tools and features for all your reporting needs, and we will help you make a smooth transition from the discontinued control. Our support team at https://support.boldreports.com/ is here to assist you with any questions or difficulties you may encounter during the migration process.

We thank you for choosing Syncfusion and appreciate your understanding.

Toolbar mouse hover

I have a problem with reportviewer. 
Everything shows up just fine, I can see the report on the page, but on mouse hover on toolbar, visual studio get stuck...and internet explorer too.

Some ideas?
Thanks.

4 Replies

YD Yuvaraj Devarajan Syncfusion Team July 27, 2017 06:07 AM UTC

Hi Bernard, 
 
Thanks for contacting Syncfusion support. 
 
We suspect the mentioned problem might be occurred when you set locale property to render the ReportViewer without referring locale culture text (“ej.localetext.js” script file) in your application. So we request you to refer the “ej.localetext.js” script file for machine culture in your application to resolve the mentioned problem at your end as shown in below code example,  

<title>Syncfusion RDL Sample</title> 
<link rel='nofollow' href="~/content/bootstrap.min.css" rel="stylesheet" /> 
<link rel='nofollow' href="~/content/ejthemes/ej.widgets.core.min.css" rel="stylesheet" /> 
<link rel='nofollow' href="~/content/ejthemes/default-theme/ej.widgets.all.min.css" rel="stylesheet" /> 
<link rel='nofollow' href="~/content/default.css" rel="stylesheet" /> 
<link rel='nofollow' href="~/content/reportdefault.css" rel="stylesheet" /> 
 
<script src="~/Scripts/jquery-1.11.3.min.js"></script> 
<script src="~/scripts/jquery.easing.1.3.min.js"></script> 
 
<script src="~/scripts/ej.web.all.min.js"></script> 
<script src="~/Scripts/ej.unobtrusive.min.js"></script> 
<script src="scripts/ej.culture.de-DE.js"></script> 
<script src="scripts/ej.localetexts.de-DE.js"></script> 
 
<body style="overflow: hidden; position: static; margin: 0px; padding: 0px; width: 100%; height: 100%"> 
    <div style="width:100%; height:100%; position:absolute;"> 
        @(Html.EJ().ReportViewer("reportsample") 
        .ProcessingMode(Syncfusion.JavaScript.ReportViewerEnums.ProcessingMode.Remote) 
                .ReportServiceUrl(VirtualPathUtility.ToAbsolute("~/api/ReportApi")) 
                .ReportPath("~/App_Data/Sample_new.rdl") 
                .Locale("de-DE") 
        ) 
    </div> 
 
</body> 

You can obtain the online ReportViewer demo sample for localization from below location,  
 
If the issue still persists, then share the “ej.web.all.min.js” script file and locale/culture script file referred in your application to validate the mentioned issue at our end.  
 
Regards, 
Yuvaraj D. 



BJ Bernard Jurlina July 27, 2017 07:17 AM UTC

Hi Yuvaraj,

I just downloaded and installed the latest version, 15.2.0.46, but the error is still the same.
The thing is that I did not set locale property to the report viewer.

Thanks!
Bernard.



BJ Bernard Jurlina July 28, 2017 05:51 AM UTC

Just a little update. Everything is working fine when I added the script ej.localtexts.en-EN.js in the project and with locale property tuned on, just like Yuvaraj said.

Thanks!



YD Yuvaraj Devarajan Syncfusion Team July 28, 2017 11:39 AM UTC

Hi Bernard, 
 
Thanks for your update. We are happy to hear that your problem is resolved. 
 
Regards, 
Yuvaraj D. 


Loader.
Live Chat Icon For mobile
Up arrow icon