You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> The `webReportDesigner.kendo-19.2.25.813.min.js` file is not served automatically by the Report Designer REST service. You need to copy this file from your Telerik Reporting installation directory (`C:\Program Files (x86)\Progress\Telerik Reporting 2025 Q3\Html5\ReportDesigner\js\`) to your ASP.NET Core application's `wwwroot/js/` folder and reference it as shown above. This approach uses the Kendo UI subset included with your Telerik Reporting license instead of requiring a separate Kendo UI license.
60
+
61
+
> The `webReportDesigner.kendo-{{site.buildversion}}.min.js` file is not served automatically by the Report Designer REST service. You need to copy this file from your Telerik Reporting installation directory (`C:\Program Files (x86)\Progress\Telerik Reporting {{site.suiteversion}}\Html5\ReportDesigner\js\`) to your ASP.NET Core application's `wwwroot/js/` folder and reference it as shown above. This approach uses the Kendo UI subset included with your Telerik Reporting license instead of requiring a separate Kendo UI license.
61
62
62
63
1. Generate a new Angular component for the report designer:
63
64
64
65
````bash
65
-
ng generate component report-designer
66
+
$ ng generate component report-designer
66
67
````
67
68
69
+
68
70
1. In your `report-designer.component.html`, add a container element for the designer:
69
71
70
72
````HTML
71
73
<div id="webReportDesigner"></div>
72
74
````
73
75
76
+
74
77
1. In your `report-designer.component.js(ts)`, declare jQuery and initialize the designer:
75
78
76
79
````JavaScript
@@ -114,6 +117,7 @@ Follow these steps to integrate the Telerik Web Report Designer in your Angular
114
117
}
115
118
````
116
119
120
+
117
121
## Additional Resources
118
122
119
123
[Download the demo application from the Reporting-Samples GitHub Repository](https://github.com/telerik/reporting-samples/tree/master/telerik-angular-viewer-and-designer).
0 commit comments