Refresh data for report
Posted: Thu Jun 23, 2011 10:04 am
I am currently evaluating your silverlight reports viewer - I am using this in its native mode i.e. no server. Data will be supplied at runtime.
I load the report and data like:
StiReport report = GetReport(reportName);
if (report != null)
{
report.RegBusinessObject("MyDataCategory1", "MyDataName1", MyDataObject);
report.Render();
viewerControl.Report = report;
}
If the data for the report changes (in my example MyDataObject), what is your recommended code for refreshing the existing report?
Thanks.
I load the report and data like:
StiReport report = GetReport(reportName);
if (report != null)
{
report.RegBusinessObject("MyDataCategory1", "MyDataName1", MyDataObject);
report.Render();
viewerControl.Report = report;
}
If the data for the report changes (in my example MyDataObject), what is your recommended code for refreshing the existing report?
Thanks.