I am working on a ASP.Net website (C#). I have installed SQLServer.Types (version 14.0.314.76 from NuGet) followed by Microsoft.ReportingServices.ReportViewer.Webforms
14.0.0.0
(version: 140.802.134 NuGet) .
I have followed all the steps (to add the control to a web page) and make sure web.config has the related entries for both ReportViewer.WebForms and ReportView.Common dlls, httphandlers, handlers etc. But, when I try to run (from Visual Studio 2015), it
breaks at code line
// Setup responsive toolbar layout
var self = this;
if ($) {
window.$RSjQuery(window).on("resize", function () {
self.ResizeToolbarIcons();
});
}
in Microsoft.Reporting.WebFormsClient._Toolbar.prototype.ConnectEventHandlers() of Reserved.ReportViewerWebControl.axd?OpType=Resource&Version=14.0.802.134&Name=ViewerScript[dynamic] and I noticed that the error is because 'window.$RSjQuery
is undefined'. What could I be missing in my installations ? Could you please help?
Thank you