or
/// <summary>/// Shows the report viewer./// </summary>/// <param name="modal">if set to <c>true</c> [modal].</param>public void ShowReportViewer(bool modal = false){ this.WindowStartupLocation = WindowStartupLocation.CenterScreen; this.TelerikReportViewer.ViewMode = ViewMode.PrintPreview; //// Uncommenting this line results in the problem... ////this.TelerikReportViewer.ZoomMode = ZoomMode.FullPage; this.ShowWindow(modal); this.window = ParentOfTypeExtensions.ParentOfType<Window>(this); this.window.Topmost = true; this.window.ShowInTaskbar = true; this.window.Activate();}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