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