How to set up in Blazor application
The following article guides you on how to use the Blazor Web Report Designer in a Blazor web application.
The quickest way to add the web report designer to a Blazor web project is with the Telerik Blazor Report Designer item template in Visual Studio. The item template adds a page with the Web Report Designer and, if needed, enables the Web Report Designer REST Service. To start the item template wizard, in Visual Studio Solution Explorer
, select the target .NET project. On the Project menu, click Add
-> New Item
. In the Add New Item search box enter "Telerik Blazor Report Designer" and select the item template that corresponds to your project type.
For full control, instead of using the item template, you can manually configure the REST service and add the web report designer as elaborated in the rest of this article.
Prerequisites
- Visual Studio 2022
- Existing .NET 6 or higher Blazor Server or WebAssembly application
- The designer consumes reports generated and served from a running REST Service. Such can be referenced from another application or it can be hosted locally in the Blazor application as described below.
Adding the Report Designer REST service and configuration
If Blazor WebAssembly project is used, this section's steps should be implemented in a separate ASP.NET Core Web API project because the service runs on the server and Blazor WebAssembly is strictly client-side -
Hosting Reports Service in ASP.NET Core in .NET 6 with Top-Level Statements Explained
- Use the NuGet package manager to add the
Telerik.WebReportDesigner.Services
package. This will also resolve other dependencies automatically. For more information, see How to add the Telerik private NuGet feed to Visual Studio. -
Add the required settings in the Startup.cs file. The
ConfigureServices
method inside theStartup.cs
in the project should be modified in order to enable the Web Report Designer REST service. Make sure the application is configured for WebAPI controllers and call theAddNewtonsoftJson
to enable the required NewtonsoftJson serialization:public void ConfigureServices(IServiceCollection services) { services.AddControllers(); services.AddRazorPages() .AddNewtonsoftJson(); services.AddServerSideBlazor(); ...
-
Add the required services in the ConfigureServices method. The sample configuration below uses the
Reports
folder in theWebRootPath
to open and save report definitions. It is required to create theReports
folder manually underwwwroot
and optionally add some report definitions inside.services.TryAddSingleton<IReportServiceConfiguration>(sp => new ReportServiceConfiguration { ReportingEngineConfiguration = sp.GetService<IConfiguration>(), HostAppId = "BlazorWebReportDesignerDemo", Storage = new FileStorage(), ReportSourceResolver = new UriReportSourceResolver(Path.Combine(sp.GetService<IWebHostEnvironment>().WebRootPath, "Reports")) }); services.TryAddSingleton<IReportDesignerServiceConfiguration>(sp => new ReportDesignerServiceConfiguration { DefinitionStorage = new FileDefinitionStorage(Path.Combine(sp.GetService<IWebHostEnvironment>().WebRootPath, "Reports")), SettingsStorage = new FileSettingsStorage(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Telerik Reporting")), ResourceStorage = new ResourceStorage(Path.Combine(sp.GetService<IWebHostEnvironment>().WebRootPath, "Resources")), SharedDataSourceStorage = new FileSharedDataSourceStorage(Path.Combine(sp.GetService<IWebHostEnvironment>().WebRootPath, "Reports", "Shared Data Sources")), });
-
Make sure the endpoints configuration inside the
Configure
method of theStartup.cs
are configured for API controllers by adding the following line in the lambda expression argument:app.UseEndpoints(endpoints => { endpoints.MapControllers(); });
-
If not already present, add this line to the Configure method of the
Startup.cs
to ensure that the application can serve static files:app.UseStaticFiles();
-
Implement a Report Designer controller. Add a
Controllers
folder to the application and right-click on it to add a new Web API Controller Class item. Name it ReportDesignerController. This will be the Telerik Web Report Designer REST service in the project.using Microsoft.AspNetCore.Mvc; using Telerik.Reporting.Services; using Telerik.WebReportDesigner.Services; using Telerik.WebReportDesigner.Services.Controllers; [Route("api/reportdesigner")] [ApiController] public class ReportDesignerController : ReportDesignerControllerBase { public ReportDesignerController(IReportDesignerServiceConfiguration reportDesignerServiceConfiguration, IReportServiceConfiguration reportServiceConfiguration) : base(reportDesignerServiceConfiguration, reportServiceConfiguration) { } }
Adding the Blazor Web Report Designer component
- Add NuGet package reference to the
Telerik.WebReportDesigner.Blazor
package hosted on the Progress Telerik proprietary NuGet feed. Make sure you have the needed NuGet feed added to the VS setting using the article How to add the Telerik private NuGet feed to Visual Studio. -
Add JavaScript dependencies to the head element of the
Pages/_Host.cshtml
(Blazor Server) orwwwroot/index.html
(Blazor WebAssembly), orApp.razor
(Blazor Web App):<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="https://kendo.cdn.telerik.com/2022.3.913/js/kendo.all.min.js"></script> <script src="/api/reportdesigner/resources/js/telerikReportViewer"></script> <script src="/api/reportdesigner/designerresources/js/webReportDesigner/"></script> <link href="https://fonts.googleapis.com/css?family=Roboto:400,500&display=swap" rel="stylesheet">
-
Add the dedicated
telerikWebReportDesignerInterop.js
dependency at the end of the body element of thePages/_Host.cshtml
(Blazor Server) orwwwroot/index.html
(Blazor WebAssembly), or inApp Razor
(Blazor Web App):<script src="_content/Telerik.WebReportDesigner.Blazor/telerikWebReportDesignerInterop.js" defer></script> @* Or this one if using the Telerik.WebReportDesigner.Blazor.Trial package *@ @*<script src="_content/Telerik.WebReportDesigner.Blazor.Trial/telerikWebReportDesignerInterop.js" defer></script>*@
-
Use the following snippet to place the designer component in a razor page like
Pages/Index.razor
.@page "/" @* For Blazor Web Apps, an interactive render mode should be used, for example: *@ @* @rendermode InteractiveServer *@ @using Telerik.WebReportDesigner.Blazor <style> #wrd1 { position: relative; width: 1300px; height: 880px; padding-right: 50px; } </style> @* Create the WebReportDesignerWidget *@ <WebReportDesigner DesignerId="wrd1" ServiceUrl="/api/reportdesigner" Report="SampleReport.trdp" ReportViewerOptions="@(new ReportViewerOptions() { templateUrl = "api/reportdesigner/resources/templates/telerikReportViewerTemplate.html", scaleMode = ScaleMode.Specific, scale = 1.0, pageMode = PageMode.ContinuousScroll, viewMode = ViewMode.Interactive })" ToolboxArea="new ToolboxAreaOptions() { Layout = ToolboxAreaLayout.List }" PropertiesArea="new PropertiesAreaOptions() { Layout = PropertiesAreaLayout.Categorized }" />
The Report option will instruct the designer to look for SampleReport.trdp inside
wwwroot/Reports
on first load. You can create this report definition in the folder or omit the Report option above. Finally, run the project.