From 620f5952bc3e7c2813c09301e43a77ad418e7f42 Mon Sep 17 00:00:00 2001 From: KB Bot Date: Mon, 21 Jul 2025 12:31:58 +0000 Subject: [PATCH 1/4] Added new kb article fixing-blazor-native-viewer-error-after-upgrade-to-19-1-25-716 --- ...ewer-error-after-upgrade-to-19-1-25-716.md | 71 +++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 knowledge-base/fixing-blazor-native-viewer-error-after-upgrade-to-19-1-25-716.md diff --git a/knowledge-base/fixing-blazor-native-viewer-error-after-upgrade-to-19-1-25-716.md b/knowledge-base/fixing-blazor-native-viewer-error-after-upgrade-to-19-1-25-716.md new file mode 100644 index 000000000..7f17f5a98 --- /dev/null +++ b/knowledge-base/fixing-blazor-native-viewer-error-after-upgrade-to-19-1-25-716.md @@ -0,0 +1,71 @@ +--- +title: Resolving Error After Upgrading to 19.1.25.716 with Blazor Native Viewer +description: Learn how to address the error thrown by Blazor Native Viewer after upgrading to Telerik Reporting version 19.1.25.716. +type: how-to +page_title: Fixing the Blazor Native Viewer Error After Upgrade to 19.1.25.716 +meta_title: Fixing the Blazor Native Viewer Error After Upgrade to 19.1.25.716 +slug: fixing-blazor-native-viewer-error-after-upgrade-to-19-1-25-716 +tags: reporting,blazor-native-viewer,error,telerik-ui-for-blazor,telerikwindow,centered +res_type: kb +ticketid: 1693434 +--- + +## Environment + + + + + + + + + + + +
Product Reporting Blazor Native Viewer
Version Current
+ +## Description + +I upgraded my project to Telerik Reporting version 19.1.25.716, which uses the [Blazor Native Viewer](https://docs.telerik.com/reporting/embedding-reports/display-reports-in-applications/web-application/native-blazor-report-viewer/overview). After the upgrade, I encountered the following error: + +``` +System.InvalidOperationException: Object of type 'Telerik.Blazor.Components.TelerikWindow' does not have a property matching the name 'Centered'. + at Microsoft.AspNetCore.Components.Reflection.ComponentProperties.ThrowForUnknownIncomingParameterName(Type targetType, String parameterName) + at Microsoft.AspNetCore.Components.Reflection.ComponentProperties.SetProperties(ParameterView& parameters, Object target) + at Telerik.Blazor.Components.TelerikWindow.SetParametersAsync(ParameterView parameters) + at Microsoft.AspNetCore.Components.Rendering.ComponentState.SupplyCombinedParameters(ParameterView directAndCascadingParameters) +``` + +This error occurs because the Blazor Native Viewer depends on version `7.1.0` of the Telerik UI for Blazor components and tries to access the `Centered` parameter of the TelerikWindow component. This parameter was removed in version `9.0.0`. Compatibility issues arise due to the dependency mismatch. + +This knowledge base article also answers the following questions: +- Why does the Blazor Native Viewer throw a `TelerikWindow` error after upgrading? +- How can I fix the `Centered` parameter error in Blazor Native Viewer? +- What alternatives exist for the Blazor Native Viewer dependency issue? + +## Solution + +To resolve this issue, choose one of the following approaches: + +### Downgrade Telerik UI for Blazor + +1. Downgrade the `Telerik.UI.for.Blazor` package in your project to version `7.1.0`. +2. Ensure compatibility between the Blazor Native Viewer and the Telerik UI for Blazor components. + +### Switch to Blazor Report Viewer + +1. Use the [Blazor Report Viewer](https://docs.telerik.com/reporting/embedding-reports/display-reports-in-applications/web-application/blazor-report-viewer/overview) instead of the Blazor Native Viewer. +2. The Blazor Report Viewer acts as a wrapper for the [HTML5 Report Viewer](https://docs.telerik.com/reporting/embedding-reports/display-reports-in-applications/web-application/html5-report-viewer/overview) and does not depend on Telerik UI for Blazor components. +3. Replace the Blazor Native Viewer in your project with Blazor Report Viewer to avoid conflicts. + +### Wait for Updated Dependencies + +1. The Reporting team plans to update the `Telerik.UI.for.Blazor` dependency in the Q3 2025 release. +2. Monitor the release notes for updates addressing this issue. + +## See Also + +- [Breaking Changes in 9.0.0: Window](https://www.telerik.com/blazor-ui/documentation/upgrade/breaking-changes/9-0-0#window) +- [Forum: TelerikWindow does not have a property matching the name 'Centered'](https://www.telerik.com/forums/telerik-blazor-components-telerikwindow-does-not-have-a-property-matching-the-name-centered?_gl=1*1ky0ygo*_ga_9JSNBCSF54*czE3NTMwODAxMjUkbzEzJGcxJHQxNzUzMDg2ODQzJGo3JGwwJGgw) +- [Feature Request: Native Blazor Viewer Throws Error Related to 'Centered'](https://feedback.telerik.com/reporting/1693306-native-blazor-viewer-throws-telerik-blazor-components-telerikwindow-does-not-have-a-property-matching-the-name-centered?_gl=1*18c1v11*_gcl_au*MTU2NDQxNzkuMTc1MzA4NzAzMQ..*_ga*MzAyODQwMTI5LjE3NTMwODcwMzE.*_ga_9JSNBCSF54*czE3NTMwODAxMjUkbzEzJGcxJHQxNzUzMDg3MzA3JGozMyRsMCRoMA..) +- [HTML5 Report Viewer Overview](https://docs.telerik.com/reporting/embedding-reports/display-reports-in-applications/web-application/html5-report-viewer/overview) From 64706857ed5e5a8aaceba6a419263f673d040ba3 Mon Sep 17 00:00:00 2001 From: IvetNikolova <118352332+IvetNikolova@users.noreply.github.com> Date: Mon, 21 Jul 2025 15:40:35 +0300 Subject: [PATCH 2/4] Update fixing-blazor-native-viewer-error-after-upgrade-to-19-1-25-716.md --- ...ewer-error-after-upgrade-to-19-1-25-716.md | 45 +++++++++---------- 1 file changed, 20 insertions(+), 25 deletions(-) diff --git a/knowledge-base/fixing-blazor-native-viewer-error-after-upgrade-to-19-1-25-716.md b/knowledge-base/fixing-blazor-native-viewer-error-after-upgrade-to-19-1-25-716.md index 7f17f5a98..32fbf4e03 100644 --- a/knowledge-base/fixing-blazor-native-viewer-error-after-upgrade-to-19-1-25-716.md +++ b/knowledge-base/fixing-blazor-native-viewer-error-after-upgrade-to-19-1-25-716.md @@ -12,21 +12,21 @@ ticketid: 1693434 ## Environment - - - - - - - - - - + + + + + + + + + +
Product Reporting Blazor Native Viewer
Version Current
Product Reporting Blazor Native Viewer
Version Current
## Description -I upgraded my project to Telerik Reporting version 19.1.25.716, which uses the [Blazor Native Viewer](https://docs.telerik.com/reporting/embedding-reports/display-reports-in-applications/web-application/native-blazor-report-viewer/overview). After the upgrade, I encountered the following error: +I upgraded my project to Telerik Reporting version 19.1.25.716, which uses the [Blazor Native Viewer]({%slug telerikreporting/embedding-reports/display-reports-in-applications/web-application/native-blazor-report-viewer/overview%}). After the upgrade, I encountered the following error: ``` System.InvalidOperationException: Object of type 'Telerik.Blazor.Components.TelerikWindow' does not have a property matching the name 'Centered'. @@ -38,11 +38,6 @@ System.InvalidOperationException: Object of type 'Telerik.Blazor.Components.Tele This error occurs because the Blazor Native Viewer depends on version `7.1.0` of the Telerik UI for Blazor components and tries to access the `Centered` parameter of the TelerikWindow component. This parameter was removed in version `9.0.0`. Compatibility issues arise due to the dependency mismatch. -This knowledge base article also answers the following questions: -- Why does the Blazor Native Viewer throw a `TelerikWindow` error after upgrading? -- How can I fix the `Centered` parameter error in Blazor Native Viewer? -- What alternatives exist for the Blazor Native Viewer dependency issue? - ## Solution To resolve this issue, choose one of the following approaches: @@ -50,22 +45,22 @@ To resolve this issue, choose one of the following approaches: ### Downgrade Telerik UI for Blazor 1. Downgrade the `Telerik.UI.for.Blazor` package in your project to version `7.1.0`. -2. Ensure compatibility between the Blazor Native Viewer and the Telerik UI for Blazor components. +1. Ensure compatibility between the Blazor Native Viewer and the Telerik UI for Blazor components. ### Switch to Blazor Report Viewer -1. Use the [Blazor Report Viewer](https://docs.telerik.com/reporting/embedding-reports/display-reports-in-applications/web-application/blazor-report-viewer/overview) instead of the Blazor Native Viewer. -2. The Blazor Report Viewer acts as a wrapper for the [HTML5 Report Viewer](https://docs.telerik.com/reporting/embedding-reports/display-reports-in-applications/web-application/html5-report-viewer/overview) and does not depend on Telerik UI for Blazor components. -3. Replace the Blazor Native Viewer in your project with Blazor Report Viewer to avoid conflicts. +1. Use the [Blazor Report Viewer]({%slug telerikreporting/embedding-reports/display-reports-in-applications/web-application/native-blazor-report-viewer/overview%}) instead of the Blazor Native Viewer. +1. The Blazor Report Viewer acts as a wrapper for the [HTML5 Report Viewer]({%slug telerikreporting/using-reports-in-applications/display-reports-in-applications/web-application/html5-report-viewer/overview%}) and does not depend on Telerik UI for Blazor components. +1. Replace the Blazor Native Viewer in your project with the Blazor Report Viewer to avoid conflicts. ### Wait for Updated Dependencies 1. The Reporting team plans to update the `Telerik.UI.for.Blazor` dependency in the Q3 2025 release. -2. Monitor the release notes for updates addressing this issue. +1. Monitor the release notes for updates addressing this issue. ## See Also -- [Breaking Changes in 9.0.0: Window](https://www.telerik.com/blazor-ui/documentation/upgrade/breaking-changes/9-0-0#window) -- [Forum: TelerikWindow does not have a property matching the name 'Centered'](https://www.telerik.com/forums/telerik-blazor-components-telerikwindow-does-not-have-a-property-matching-the-name-centered?_gl=1*1ky0ygo*_ga_9JSNBCSF54*czE3NTMwODAxMjUkbzEzJGcxJHQxNzUzMDg2ODQzJGo3JGwwJGgw) -- [Feature Request: Native Blazor Viewer Throws Error Related to 'Centered'](https://feedback.telerik.com/reporting/1693306-native-blazor-viewer-throws-telerik-blazor-components-telerikwindow-does-not-have-a-property-matching-the-name-centered?_gl=1*18c1v11*_gcl_au*MTU2NDQxNzkuMTc1MzA4NzAzMQ..*_ga*MzAyODQwMTI5LjE3NTMwODcwMzE.*_ga_9JSNBCSF54*czE3NTMwODAxMjUkbzEzJGcxJHQxNzUzMDg3MzA3JGozMyRsMCRoMA..) -- [HTML5 Report Viewer Overview](https://docs.telerik.com/reporting/embedding-reports/display-reports-in-applications/web-application/html5-report-viewer/overview) +* [Breaking Changes in 9.0.0: Window](https://www.telerik.com/blazor-ui/documentation/upgrade/breaking-changes/9-0-0#window) +* [Forum: TelerikWindow does not have a property matching the name 'Centered'](https://www.telerik.com/forums/telerik-blazor-components-telerikwindow-does-not-have-a-property-matching-the-name-centered?_gl=1*1ky0ygo*_ga_9JSNBCSF54*czE3NTMwODAxMjUkbzEzJGcxJHQxNzUzMDg2ODQzJGo3JGwwJGgw) +* [Feature Request: Native Blazor Viewer Throws Error Related to 'Centered'](https://feedback.telerik.com/reporting/1693306-native-blazor-viewer-throws-telerik-blazor-components-telerikwindow-does-not-have-a-property-matching-the-name-centered?_gl=1*18c1v11*_gcl_au*MTU2NDQxNzkuMTc1MzA4NzAzMQ..*_ga*MzAyODQwMTI5LjE3NTMwODcwMzE.*_ga_9JSNBCSF54*czE3NTMwODAxMjUkbzEzJGcxJHQxNzUzMDg3MzA3JGozMyRsMCRoMA..) +* [HTML5 Report Viewer Overview]({%slug telerikreporting/using-reports-in-applications/display-reports-in-applications/web-application/html5-report-viewer/overview%}) From 880e86c480cc5bd719135beec1b25a2593efadfb Mon Sep 17 00:00:00 2001 From: Todor Arabadzhiev Date: Wed, 23 Jul 2025 18:01:26 +0300 Subject: [PATCH 3/4] Update and rename fixing-blazor-native-viewer-error-after-upgrade-to-19-1-25-716.md to telerikwindow-does-not-have-property-matching-name-centered.md --- ...t-have-property-matching-name-centered.md} | 27 +++++++++---------- 1 file changed, 12 insertions(+), 15 deletions(-) rename knowledge-base/{fixing-blazor-native-viewer-error-after-upgrade-to-19-1-25-716.md => telerikwindow-does-not-have-property-matching-name-centered.md} (60%) diff --git a/knowledge-base/fixing-blazor-native-viewer-error-after-upgrade-to-19-1-25-716.md b/knowledge-base/telerikwindow-does-not-have-property-matching-name-centered.md similarity index 60% rename from knowledge-base/fixing-blazor-native-viewer-error-after-upgrade-to-19-1-25-716.md rename to knowledge-base/telerikwindow-does-not-have-property-matching-name-centered.md index 32fbf4e03..3f3392471 100644 --- a/knowledge-base/fixing-blazor-native-viewer-error-after-upgrade-to-19-1-25-716.md +++ b/knowledge-base/telerikwindow-does-not-have-property-matching-name-centered.md @@ -1,16 +1,17 @@ --- -title: Resolving Error After Upgrading to 19.1.25.716 with Blazor Native Viewer -description: Learn how to address the error thrown by Blazor Native Viewer after upgrading to Telerik Reporting version 19.1.25.716. +title: 'Telerik.Blazor.Components.TelerikWindow' does not have a property matching the name 'Centered' +description: Learn how to address the error thrown by Blazor Native Viewer Object of type 'Telerik.Blazor.Components.TelerikWindow' does not have a property matching the name 'Centered' type: how-to -page_title: Fixing the Blazor Native Viewer Error After Upgrade to 19.1.25.716 -meta_title: Fixing the Blazor Native Viewer Error After Upgrade to 19.1.25.716 -slug: fixing-blazor-native-viewer-error-after-upgrade-to-19-1-25-716 +page_title: Blazor Native Viewer throws Object of type 'Telerik.Blazor.Components.TelerikWindow' does not have a property matching the name 'Centered' +meta_title: Blazor Native Viewer throws Object of type 'Telerik.Blazor.Components.TelerikWindow' does not have a property matching the name 'Centered' +slug: telerikwindow-does-not-have-property-matching-name-centered tags: reporting,blazor-native-viewer,error,telerik-ui-for-blazor,telerikwindow,centered res_type: kb ticketid: 1693434 --- ## Environment + @@ -26,15 +27,15 @@ ticketid: 1693434 ## Description -I upgraded my project to Telerik Reporting version 19.1.25.716, which uses the [Blazor Native Viewer]({%slug telerikreporting/embedding-reports/display-reports-in-applications/web-application/native-blazor-report-viewer/overview%}). After the upgrade, I encountered the following error: +I upgraded my Telerik Reporting project, which uses the [Blazor Native Viewer]({%slug telerikreporting/embedding-reports/display-reports-in-applications/web-application/native-blazor-report-viewer/overview%}). After the upgrade, I encountered the following error: -``` +```` System.InvalidOperationException: Object of type 'Telerik.Blazor.Components.TelerikWindow' does not have a property matching the name 'Centered'. at Microsoft.AspNetCore.Components.Reflection.ComponentProperties.ThrowForUnknownIncomingParameterName(Type targetType, String parameterName) at Microsoft.AspNetCore.Components.Reflection.ComponentProperties.SetProperties(ParameterView& parameters, Object target) at Telerik.Blazor.Components.TelerikWindow.SetParametersAsync(ParameterView parameters) at Microsoft.AspNetCore.Components.Rendering.ComponentState.SupplyCombinedParameters(ParameterView directAndCascadingParameters) -``` +```` This error occurs because the Blazor Native Viewer depends on version `7.1.0` of the Telerik UI for Blazor components and tries to access the `Centered` parameter of the TelerikWindow component. This parameter was removed in version `9.0.0`. Compatibility issues arise due to the dependency mismatch. @@ -44,19 +45,15 @@ To resolve this issue, choose one of the following approaches: ### Downgrade Telerik UI for Blazor -1. Downgrade the `Telerik.UI.for.Blazor` package in your project to version `7.1.0`. -1. Ensure compatibility between the Blazor Native Viewer and the Telerik UI for Blazor components. +Downgrade the `Telerik.UI.for.Blazor` package in your project to version `7.1.0` to ensure compatibility between the Blazor Native Viewer and the Telerik UI for Blazor components. ### Switch to Blazor Report Viewer -1. Use the [Blazor Report Viewer]({%slug telerikreporting/embedding-reports/display-reports-in-applications/web-application/native-blazor-report-viewer/overview%}) instead of the Blazor Native Viewer. -1. The Blazor Report Viewer acts as a wrapper for the [HTML5 Report Viewer]({%slug telerikreporting/using-reports-in-applications/display-reports-in-applications/web-application/html5-report-viewer/overview%}) and does not depend on Telerik UI for Blazor components. -1. Replace the Blazor Native Viewer in your project with the Blazor Report Viewer to avoid conflicts. +Use the [Blazor HTML5 Report Viewer]({%slug telerikreporting/using-reports-in-applications/display-reports-in-applications/web-application/blazor-report-viewer/overview%}) instead of the Blazor Native Viewer. The Blazor Report Viewer acts as a wrapper for the [HTML5 Report Viewer]({%slug telerikreporting/using-reports-in-applications/display-reports-in-applications/web-application/html5-report-viewer/overview%}) and does not depend on Telerik UI for Blazor components. ### Wait for Updated Dependencies -1. The Reporting team plans to update the `Telerik.UI.for.Blazor` dependency in the Q3 2025 release. -1. Monitor the release notes for updates addressing this issue. +The Reporting team plans to update the `Telerik.UI.for.Blazor` dependency in the Q3 2025 release. Monitor the release notes for updates addressing this issue. ## See Also From 0de80eeebf3d8fd32aedeb017340734461809038 Mon Sep 17 00:00:00 2001 From: Todor Arabadzhiev Date: Wed, 23 Jul 2025 18:02:11 +0300 Subject: [PATCH 4/4] Update telerikwindow-does-not-have-property-matching-name-centered.md --- ...lerikwindow-does-not-have-property-matching-name-centered.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/knowledge-base/telerikwindow-does-not-have-property-matching-name-centered.md b/knowledge-base/telerikwindow-does-not-have-property-matching-name-centered.md index 3f3392471..eaab6ddd0 100644 --- a/knowledge-base/telerikwindow-does-not-have-property-matching-name-centered.md +++ b/knowledge-base/telerikwindow-does-not-have-property-matching-name-centered.md @@ -1,5 +1,5 @@ --- -title: 'Telerik.Blazor.Components.TelerikWindow' does not have a property matching the name 'Centered' +title: Telerik.Blazor.Components.TelerikWindow does not have a property matching the name Centered description: Learn how to address the error thrown by Blazor Native Viewer Object of type 'Telerik.Blazor.Components.TelerikWindow' does not have a property matching the name 'Centered' type: how-to page_title: Blazor Native Viewer throws Object of type 'Telerik.Blazor.Components.TelerikWindow' does not have a property matching the name 'Centered'