Configuring the Web Report Designer in ASP.NET Framework application
This article shows how to integrate our Web Report Designer in an ASP.NET application.
Prerequisites
The following list describes the prerequisites for this guide:
- Create a sample ASP.NET MVC Project.
- Add the Telerik.WebReportDesigner.Services NuGet package. It has dependencies on other Telerik Reporting NuGet packages but they will be automatically added to your project.
- Update the Microsoft.AspNet.WebApi.WebHost NuGet package to version 5.2.7 or later.
When you use NuGet packages, the dependencies will be automatically resolved. Otherwise, you need to add them manually to the project. For more information, see How to add the Telerik private NuGet feed to Visual Studio.
If you need to enable users to export reports in Office OpenXML document formats (XLSX, DOCX and PPTX), you must install the DocumentFormat.OpenXML and the Telerik.Reporting.OpenXmlRendering NuGet packages. For more information about the required package versions, see Deploying Open XML.
Setting up the Report Designer REST service:
The REST service works as a backend and is responsible for storage operations like creating, opening, or saving report definitions. The following steps describe how to configure it:
- Implement a Report Designer controller. Right-click on the
Controllers
folder and add a new item: Add > New item > Web API Controller Class item. Name itReportDesignerController
. This will be our Telerik Web Report Designer REST service in the project. -
Inherit the ReportDesignerControllerBase type and setup the
ReportServiceConfiguration
instance. Notice that there is another configuration instance namedReportDesignerServiceConfiguration
, which will initialize the definition storage. This is the class, responsible for opening, saving etc. the report definitions. This is how a basic implementation of the controller should look like:
Adding the Web Report Designer:
-
Navigate to
Views
->Home
and add a new CSHTML Page for the Web Report Designer. Name the fileIndex.cshtml
. Add the required references to load the font, jQuery, Telerik Kendo UI libraries, telerikReportViewer, and webReportDesigner scripts listed in the example below. Finally, add the initialization of the telerik_WebReportDesigner widget. Note that the Web Report Designer container has a minimum width of 1200px. The complete report viewer page should look like this:The ReportDesignerController we added above is configured to search for its reports in a sub-folder named
Reports
. The Report Designer widget we just configured will try to load a report namedSampleReport.trdp
. Add a new folder namedReports
to the solution and add an existing report namedSampleReport.trdp
to it. -
Register the ReportsControllerConfiguration and ReportDesignerControllerConfiguration routes in the
Application_Start()
method of theGlobal.asax
file. It is important to register them before the default routes as shown below: In case the reports shown in the viewer need access to a database, add the necessary connection strings to the
web.config
file.- Finally, run the project to preview the web designer.