Hi,
I am using Telerik Reporting Q3 2012 with Silverlight 5. I would like to add reports in a Report Book dynamically. Could you please tell is there any way that I can send Report Names from client to the server so that I can create their instance dynamically and add them into the report book, like,
string rptNames = “Rpt1,Rpt1”;string[] names = rptNames.Split(‘,’); Type type = Type.GetType(names[0]); var o = Activator.CreateInstance(type); ReportBook.Reports.Add((Report)o);…..
I want to send rptNames from the client and get it on the server.
Thanks!
Adil
var report = new ReportViewer { Report = "Test.MyReport, Test", ReportServiceUri = new Uri("../ReportService.svc", UriKind.Relative) };var grid = new Grid();grid.Children.Add(report);var window = new ChildWindow { Content = grid }; window.Show();<controls:ChildWindow x:Class="Views.MyChildWindow" xmlns:controls="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls" xmlns:telerik="clr-namespace:Telerik.ReportViewer.Silverlight;assembly=Telerik.ReportViewer.Silverlight"> <Grid x:Name="LayoutRoot"> <telerik:ReportViewer x:Name="ReportTestViewPrint" ReportServiceUri="../ReportService.svc" Report="Test.MyReport, Test"> </telerik:ReportViewer> </Grid></controls:ChildWindow>var window = new MyChildWindow();window.Show();Hi,
We are using Telerik Reporting Q2 2010 v4_1_10_921_dev for our project reports. we are working on localizing Reports.
we started by using "localizing Telerik Reports video" as reference.
http://tv.telerik.com/watch/reporting/localize/localizing-telerik-reports
As mentioned in video, when we enter the french text in the Text block and hit enter french resource file will be generated automatically. But when we try enter text and hit enter its giving error
"Code generation for property "Text" failed". Refer attached screen shot.
Steps we followed :
Set the report localize property to true
Set the language property to french
Replace the text with french text and hit enter ( as mentioned in video) and error pops up.
Request you assist in solving problem.
Thanks and Regards
Jyoti