Latest Telerik.Reporting (2010.3 1221) - the order of attributes can break reports. This did not appear to be an issue with prior (at least .1119)
As an example, from the included samples in From CSharp.ReportExamples.vs2010 - CSharp.Silverlight.Demo: MainPage.xaml
This works (as supplied in demo)
Changing the order of Report and ReportSerivceUri does not work (Page will load, and will display "No Report" where the report content should be within the viewer).
I tried to post this as a support ticket - but received the message "Hashtable insert failed. Load factor too high." - guess I'm two for two today.
Also note that if you are using say the ReportView.RenderBegin event, that event will not be raised in addition to the report not being rendered in the following:
As an example, from the included samples in From CSharp.ReportExamples.vs2010 - CSharp.Silverlight.Demo: MainPage.xaml
This works (as supplied in demo)
<
telerik:ReportViewer
Grid.Row
=
"1"
x:Name
=
"ReportViewer1"
Width
=
"1000"
telerikControls:StyleManager.Theme
=
"{Binding SelectedItem, ElementName=ThemeSelector}"
ReportServiceUri
=
"../ReportService.svc"
Report
=
"Telerik.Reporting.Examples.CSharp.ReportCatalog, CSharp.ReportLibrary"
/>
Changing the order of Report and ReportSerivceUri does not work (Page will load, and will display "No Report" where the report content should be within the viewer).
<
telerik:ReportViewer
Grid.Row
=
"1"
x:Name
=
"ReportViewer1"
Width
=
"1000"
telerikControls:StyleManager.Theme
=
"{Binding SelectedItem, ElementName=ThemeSelector}"
Report
=
"Telerik.Reporting.Examples.CSharp.ReportCatalog, CSharp.ReportLibrary"
ReportServiceUri
=
"../ReportService.svc"
/>
I tried to post this as a support ticket - but received the message "Hashtable insert failed. Load factor too high." - guess I'm two for two today.
Also note that if you are using say the ReportView.RenderBegin event, that event will not be raised in addition to the report not being rendered in the following:
<
telerik:ReportViewer
Grid.Row
=
"1"
x:Name
=
"ReportViewer1"
Width
=
"1000"
telerikControls:StyleManager.Theme
=
"{Binding SelectedItem, ElementName=ThemeSelector}"
Report
=
"Telerik.Reporting.Examples.CSharp.ReportCatalog, CSharp.ReportLibrary"
ReportServiceUri
=
"../ReportService.svc"
RenderBegin
=
"ReportViewer1_RenderBegin"
/>