Skip to content

Commit ef57fde

Browse files
Update how-to-set-report-documentname-as-web-page-document-title.md (#1826)
* Update how-to-set-report-documentname-as-web-page-document-title.md * Update check-if-data-field-exists-before-using-it.md * Update hide-gridlines-crosstab-table-telerik-reporting.md * Update how-to-customize-web-service-data-source-url.md * Update the-type-initializer-for-lock-threw-an-exception.md * Update extract-inline-images-picturebox-telerik-reporting.md * Update improving-basic-report.md * Update set-up-and-create-basic-report.md * Update how-to-determine-effective-visibility-of-parameters-area.md * Update how-to-implement-the-reportscontroller-in-an-application.md * Update export-of-blazor-native-viewer-in-telerik-window-not-working.md * Update instantiation-vulnerability-cve-2024-4202.md * Update command-injection-cve-2024-7840.md * Update insecure-type-resolution-cve-2024-8014.md * Update insecure-expression-evaluation-cve-2024-8048.md * Update deserialization-vulnerability-cve-2024-4200.md * Update print-error-chrome.md * Update configure-the-stand-alone-report-designer-sqlite-data-provider.md * Update using-sqlite-data-provider.md * Update 2025-q2-19-1-25-521.md * Update font-is-missing-in-report-designers.md * Update wrap-text-data-labels-telerik-reporting.md * Update reports-with-continuouspaper-or-custom-paperkind-cut-on-some-printers.md * Update how-to-remove-trial-message.md * Update before-2025.md * Update postgres-stored-functions-in-sqldatasource-wizard.md * Update setting-up-your-telerik-reporting-license-key.md * Update add-license-key-ci-services.md * Update license-faq.md * Update license-errors-and-warnings.md
1 parent c43886b commit ef57fde

File tree

30 files changed

+163
-155
lines changed

30 files changed

+163
-155
lines changed

designing-reports/connecting-to-data/data-source-components/sqldatasource-component/using-data-providers/using-sqlite-data-provider.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Using the SQLite Data Provider
33
page_title: Integrating the SQLite Data Provider
4-
description: "Learn more about how the SQLite data provider can be used by the SqlDataSource component to connect to local data storages in Telerik Reporting."
4+
description: "Learn more about how the SQLite data provider can be used by the SqlDataSource component to connect to local data storage in Telerik Reporting."
55
slug: telerikreporting/designing-reports/connecting-to-data/data-source-components/sqldatasource-component/using-data-providers/using-sqlite-data-provider
66
tags: System.Data.Sqlite,sqlite,data,provider
77
published: True
@@ -15,11 +15,11 @@ The [System.Data.SQLite](https://system.data.sqlite.org/) is an ADO.NET provider
1515
## Setting up the System.Data.Sqlite Data Provider in the .NET Standalone Report Designer
1616

1717
1. Download the **SQLite Binaries** built for `.NET Standard 2.0` or `.NET Standard 2.1` from the [System.Data.Sqlite](http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki) Downloads page.
18-
1. Unpackage the zip with the binaries and copy the `System.Data.Sqlite.dll` file to the .NET Standalone Report Designer installation directory e.g. `C:\Program Files (x86)\Progress\Telerik Reporting {{site.suiteversion}}\Report Designer\.NET`.
19-
1. Download SQLite binaries built for `.NET Framework.4.X` from the [System.Data.Sqlite](http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki) page, for example [sqlite-netFx40-binary-x64-2010-1.0.117.0.zip](https://system.data.sqlite.org/downloads/1.0.117.0/sqlite-netFx40-binary-x64-2010-1.0.117.0.zip).
20-
1. Unpackage the archive and copy the `SQLite.Interop.dll` assembly to the .NET Standalone Report Designer installation directory e.g. `C:\Program Files (x86)\Progress\Telerik Reporting {{site.suiteversion}}\Report Designer\.NET`.
18+
1. Unpackage the zip with the binaries and copy the `System.Data.Sqlite.dll` file to the .NET Standalone Report Designer installation directory, e.g., `C:\Program Files (x86)\Progress\Telerik Reporting {{site.suiteversion}}\Report Designer\.NET`.
19+
1. Download SQLite binaries built for `.NET Framework.4.X` from the [System.Data.Sqlite](http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki) page.
20+
1. Unpackage the archive and copy the `SQLite.Interop.dll` assembly to the .NET Standalone Report Designer installation directory, e.g., `C:\Program Files (x86)\Progress\Telerik Reporting {{site.suiteversion}}\Report Designer\.NET`.
2121
1. Restart the designer if you have previously opened it.
22-
1. Add a new SqlDataSource and you should see that the `Sqlite` Data Provider is in the dropdown.
22+
1. Add a new SqlDataSource, and you should see that the `Sqlite` Data Provider is in the dropdown.
2323

2424
## Setting up the System.Data.Sqlite Data Provider in the .NET Framework Standalone Report Designer
2525

@@ -48,7 +48,7 @@ The [System.Data.SQLite](https://system.data.sqlite.org/) is an ADO.NET provider
4848
4949
The [System.Data.Sqlite](https://system.data.sqlite.org/) data provider is automatically registered in the `Telerik.Reporting.Processing.Data.DbProviderFactories`. To use this data provider, it should be enough to install the [System.Data.SQLite](https://www.nuget.org/packages/System.Data.SQLite/) NuGet package to the project.
5050
51-
If the [SqlDataSource component]({%slug telerikreporting/designing-reports/connecting-to-data/data-source-components/sqldatasource-component/overview%}) uses a `shared` connection where it is retrieved from the configuration file of the project(e.g. `appsettings.json`), the provider name must be specified in the connection. For example:
51+
If the [SqlDataSource component]({%slug telerikreporting/designing-reports/connecting-to-data/data-source-components/sqldatasource-component/overview%}) uses a `shared` connection where it is retrieved from the configuration file of the project(e.g., `appsettings.json`), the provider name must be specified in the connection. For example:
5252
5353
````JSON
5454
{

embedding-reports/host-the-report-engine-remotely/asp.net-web-api-implementation/how-to-implement-the-reportscontroller-in-an-application.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ previous_url: /telerik-reporting-rest-implementing-http-service,/embedding-repor
1111

1212
# Implementing the ReportsController in an ASP.NET Application
1313

14-
The Telerik Reporting REST Web API service is represented by the abstract [ReportsControllerBase](/api/Telerik.Reporting.Services.WebApi.ReportsControllerBase) class. This abstract class requires [IReportSourceResolver](/api/Telerik.Reporting.Services.IReportSourceResolver) and [IStorage](/api/Telerik.Reporting.Cache.Interfaces.IStorage) implementations. In order to add the reports controller to your application follow the steps:
14+
The Telerik Reporting REST Web API service is represented by the abstract [ReportsControllerBase](/api/Telerik.Reporting.Services.WebApi.ReportsControllerBase) class. This abstract class requires [IReportSourceResolver](/api/Telerik.Reporting.Services.IReportSourceResolver) and [IStorage](/api/Telerik.Reporting.Cache.Interfaces.IStorage) implementations. To add the reports controller to your application, follow the steps:
1515

1616
1. Add references to the following Telerik Reporting assemblies (required) and set their __Copy Local__ properties to true in Visual Studio:
1717

@@ -20,12 +20,12 @@ The Telerik Reporting REST Web API service is represented by the abstract [Repor
2020

2121
1. Add references to the following Telerik Reporting assemblies (optional) and set their __Copy Local__ properties to true in Visual Studio:
2222

23-
+ Telerik.Reporting.Cache.Database.dll - only if [DatabaseStorage](/api/Telerik.Reporting.Cache.Database.DatabaseStorage) caching mechanism is intended. For more details check [Reporting REST Service Storage]({%slug telerikreporting/using-reports-in-applications/host-the-report-engine-remotely/telerik-reporting-rest-services/rest-service-storage/overview%}). The assembly has dependencies on Telerik Data Access which can be checked in the version corresponding [Upgrade article]({%slug telerikreporting/upgrade/overview%});
23+
+ Telerik.Reporting.Cache.Database.dll - only if [DatabaseStorage](/api/Telerik.Reporting.Cache.Database.DatabaseStorage) caching mechanism is intended. For more details, check [Reporting REST Service Storage]({%slug telerikreporting/using-reports-in-applications/host-the-report-engine-remotely/telerik-reporting-rest-services/rest-service-storage/overview%}). The assembly has dependencies on Telerik Data Access, which can be checked in the version corresponding to [Upgrade article]({%slug telerikreporting/upgrade/overview%});
2424
+ Telerik.Reporting.OpenXmlRendering - depends on [Third-Party Dependencies]({%slug telerikreporting/using-reports-in-applications/third-party-dependencies%}). Required if you need to export in OpenXML formats (DOCX, PPTX, XLSX);
2525
+ Telerik.Reporting.XpsRendering - required if you need to export in XPS format;
2626
+ Telerik.Reporting.Adomd.dll - required if you use [CubeDataSource]({%slug telerikreporting/designing-reports/connecting-to-data/data-source-components/cubedatasource-component/overview%}) components in reports. The assembly has dependencies on *Microsoft.AnalysisServices.AdomdClient.dll* v.10.0.0.0 or [above with proper binding redirects]({%slug telerikreporting/designing-reports/connecting-to-data/data-source-components/cubedatasource-component/configuring-your-project-for-using-microsoft-analysis-services%});
2727

28-
>Without setting Telerik Reporting references' _Copy Local_ to true the assemblies may not be loaded correctly on running the application.
28+
>Without setting Telerik Reporting references' _Copy Local_ to true, the assemblies may not be loaded correctly when running the application.
2929

3030
1. Inherit this base class in your hosting application (usually in the Controllers folder of an MVC application).
3131

@@ -36,7 +36,7 @@ The Telerik Reporting REST Web API service is represented by the abstract [Repor
3636
{{source=CodeSnippets\MvcCS\Controllers\ReportsController.cs region=ReportsControllerImplementation}}
3737
{{source=CodeSnippets\MvcVB\Controllers\ReportsController.vb region=ReportsControllerImplementation}}
3838
39-
>note Starting with the [2024 Q4 (18.3.24.1112)](https://www.telerik.com/support/whats-new/reporting/release-history/progress-telerik-reporting-2024-q4-(18-3-24-1112)), it is possible to define the [ReportServiceConfiguration](/api/Telerik.Reporting.Services.WebApi.ReportsControllerBase#Telerik_Reporting_Services_WebApi_ReportsControllerBase_ReportServiceConfiguration) with less code using the `AddTelerikReporting` extension method:
39+
>note Starting with the [2024 Q4 (18.3.24.1112)](https://www.telerik.com/support/whats-new/reporting/release-history/progress-telerik-reporting-2024-q4-18-3-24-1112), it is possible to define the [ReportServiceConfiguration](/api/Telerik.Reporting.Services.WebApi.ReportsControllerBase#Telerik_Reporting_Services_WebApi_ReportsControllerBase_ReportServiceConfiguration) with less code using the `AddTelerikReporting` extension method:
4040
4141
{{source=CodeSnippets\MvcCS\Controllers\ReportsController.cs region=ReportsControllerImplementationMinimal}}
4242
{{source=CodeSnippets\MvcVB\Controllers\ReportsController.vb region=ReportsControllerImplementationMinimal}}

getting-started/web-designer/improving-basic-report.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Improving Basic Report
33
page_title: Improving Your First Report
44
description: "Learn how to edit reports in the Telerik Web Report Designer, add SharedDataSources and Actions, copy content between reports, and more in this step-by-step tutorial."
55
slug: telerikreporting/getting-started/web-designer/improving-basic-report
6-
tags: how,web,designer,report,navigate,action,shareddatasource
6+
tags: web,designer,report,navigate,action,shareddatasource
77
published: True
88
position: 2
99
---
@@ -12,8 +12,8 @@ position: 2
1212

1313
In this step-by-step tutorial, we will improve the basic report created in the previous tutorial [Embedding the Web Report Designer in .NET {{site.mindotnetversion}} and Creating Your First Report]({%slug telerikreporting/getting-started/web-designer/set-up-and-create-basic-report%}) by adding a common business requirement to click a data series to show more details in a child report.
1414

15-
* First, we will create a second report to display the details data.
16-
* Then, we will learn how to add a [SharedDataSource component]({%slug telerikreporting/designing-reports/connecting-to-data/data-source-components/shareddatasource-component%}) to share data source between reports.
15+
* First, we will create a second report to display the detailed data.
16+
* Then, we will learn how to add a [SharedDataSource component]({%slug telerikreporting/designing-reports/connecting-to-data/data-source-components/shareddatasource-component%}) to share a data source between reports.
1717
* Next, we will add and configure a [PieChart]({%slug telerikreporting/designing-reports/report-structure/graph/chart-types/pie-charts/overview%}) to the detailed report.
1818
* Finally, we will learn how to add a [Drillthrough/Navigate To Report Action]({%slug telerikreporting/designing-reports/adding-interactivity-to-reports/actions/drillthrough-report-action%}) to the master report Column Chart.
1919
* At the end, we will have a master report able to navigate to a child report with detailed data for the selected **Product Category**.
@@ -93,7 +93,7 @@ Our first goal is to create a new report within the Web Report Designer. It will
9393

9494
![Adding an existing shared data source to the child report from the Assets manager.](images/add-existing-shared-data-source.png)
9595

96-
1. In the popped-up `Browse For Folder` dialog select `Shared Data Sources` on the left and choose the `productSalesData.sdsx` file, which is our shared data source that we just saved from the main report.
96+
1. In the popped-up `Browse For Folder` dialog, select `Shared Data Sources` on the left and choose the `productSalesData.sdsx` file, which is our shared data source that we just saved from the main report.
9797

9898
![Selecting an existing shared data source SDSX file from the 'Browse For Folder' dialog in the child report.](images/select-existing-shared-data-source.png)
9999

@@ -131,7 +131,7 @@ Our first goal is to create a new report within the Web Report Designer. It will
131131

132132
* Check the `DataPointLabelConnectorStyle` > `Visible` property.
133133
* Set `DataPointLabelOffset` to `5mm`.
134-
* For `DataPointLabelAlignment` use `OutsideColumn` from the dropdown.
134+
* For `DataPointLabelAlignment`, use `OutsideColumn` from the dropdown.
135135
* Click `Save`.
136136

137137
![Styling the pie chart series' data point labels in the child report.](images/pie-chart-series-datapointlabelalignment.png)
@@ -144,10 +144,10 @@ Our first goal is to create a new report within the Web Report Designer. It will
144144

145145
1. Navigate to the main report.
146146
1. Search for `category group` in the Search box and select the `productCategoryGroup1`.
147-
1. In the `Edit Item` dialog go to `Action` and select `Navigate to report` from the dropdown.
147+
1. In the `Edit Item` dialog, go to `Action` and select `Navigate to report` from the dropdown.
148148
1. Set the _Report source_ `Type` to __UriReportSource__.
149149
1. Open the Assets manager from the icon next to `Uri` and select the `SalesBySubcategory.trdp` report from the `Demo` folder.
150-
1. Add a new Parameter to the `Parameters` collection of the _Report source_ with `Name` corresponding to the child report's parameter, i.e. `Category`, and `Value` being the value of the current product category field, i.e. `=Fields.ProductCategory`.
150+
1. Add a new Parameter to the `Parameters` collection of the _Report source_ with `Name` corresponding to the child report's parameter, i.e., `Category`, and `Value` being the value of the current product category field, i.e., `=Fields.ProductCategory`.
151151
1. Click `Save` to preserve the configuration.
152152

153153
![The column chart in the main report with configured Navigate to Report action.](images/navigate-to-report-action-in-main-report-chart.png)
@@ -166,7 +166,7 @@ Our first goal is to create a new report within the Web Report Designer. It will
166166
* [Video tutorial 'Getting Started with the Web Report Designer: Part 2'](https://www.youtube.com/watch?v=DXKlgq-MYIU)
167167
* [Video tutorial 'Getting Started with the Web Report Designer: Part 1'](https://www.youtube.com/watch?v=L-utkcB8-5c)
168168
* [Embedding the Web Report Designer in .NET {{site.mindotnetversion}} and Creating Your First Report]({%slug telerikreporting/getting-started/web-designer/set-up-and-create-basic-report%})
169-
* [Web Report Designer](%{slug telerikreporting/designing-reports/report-designer-tools/web-report-designer/overview%})
169+
* [Web Report Designer]({%slug telerikreporting/designing-reports/report-designer-tools/web-report-designer/overview%})
170170
* [Demo Page for Telerik Reporting](https://demos.telerik.com/reporting)
171171
* [Telerik Reporting Homepage](https://www.telerik.com/products/reporting)
172172
* [Reporting Forums](https://www.telerik.com/forums/reporting)

0 commit comments

Comments
 (0)