Report Viewer and Web Designer in Vue.js
Environment
Product | Progress® Telerik® Reporting R3 2022+ |
Framework | Vue |
Description
The HTML5 Report Viewer and Web Report Designer are built upon HTML5, CSS, and JavaScript. This allows using them in virtually any JavaScript framework including Vue.js.
The solution we are about to examine is a very basic approach to create a new Vue application, include the viewer and designer dependencies, and display them in separate views.
Solution
The following guide assumes previous knowledge of Vue:
-
Start by creating a new Vue application using the following CLI command:
-
Next, include the necessary JS dependencies of the viewer and designer in
index.html
. This includes the jQuery library, Kendo. For this example, we will be retrieving the Report Viewer and Report Designer JS resources from the online demos: -
Then, add the default Kendo SASS theme again in
index.html
, inside thehead
element, to style the report viewer and designer: -
Create a new report viewer component(e.g.
ReportViewer.vue
) and configure the routes accordingly. The new component contains adiv
element to hold the report viewer object and applies CSS to this element. The component calls thetelerik_ReportViewer
method to create the report viewer with the specified configuration options. It is important that theserviceUrl
option points to the URL of a working Reporting REST Service: -
Create a new report designer component((e.g.
ReportDesigner.vue
)) and configure the routes accordingly. The new component contains adiv
element to hold the report designer object and applies CSS to this element. The component calls thetelerik_WebReportDesigner
method to create the report viewer with the specified configuration options. It is important that theserviceUrl
option points to the URL of a working Report Designer REST Service. -
Run the
dev
script to start the application in development mode:
Here is how the starting page of the application should look like:
Additional resources
Download the final Vue.js application from Sample Vite + Vue3 Application.