I upgraded to to latest software version and now I can't get a Telerik Report to render to save my life. The page is very simple.
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="ReportViewerForm1.aspx.vb" Inherits="trvTest._ReportViewerForm1" %><%@ Register TagPrefix="telerik" Assembly="Telerik.ReportViewer.Html5.WebForms" Namespace="Telerik.ReportViewer.Html5.WebForms" %><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title>Telerik HTML5 Web Forms Report Viewer Form</title> <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <style> #reportViewer1 { position: absolute; left: 5px; right: 5px; top: 5px; bottom: 5px; overflow: hidden; font-family: Verdana, Arial; } </style></head><body> <form runat="server"> <telerik:ReportViewer ID="reportViewer1" ServiceUrl="http://localhost/TReportServer/api/reports" Width="1300px" Height="900px" runat="server"> <ReportSource IdentifierType="UriReportSource" Identifier="POSInvoice.trdp"> </ReportSource> <%-- If set to true shows the Send Mail Message toolbar button --%> <SendEmail Enabled = "false" /> </telerik:ReportViewer> </form></body></html>
When I run it. The page looks like the attached screen print. It has numerous java errors most of which seem to have something to do with Kendo and as far as I know I'm not even using Kendo.