Page 1 of 1

Is it possible to render the reports without a popup?

Posted: Mon Oct 01, 2012 8:59 pm
by nitinsobti
Hello,

We were evaluating Stimulsoft for a Silverlight reporting solution and were able to get the reports to work.
Using "report.Show()", the reports opened up in their own popup window and we were wondering if there was a way to open the reports in the same browser window itself as a plug-in?

Thanks.

Nitin

Re: Is it possible to render the reports without a popup?

Posted: Tue Oct 02, 2012 6:01 am
by Alex K.
Hello,

You can place the Stimulsoft.Report.Viewer.StiSLViewerControl on any control and set for the Report property a rendered report
example:

Code: Select all

<UserControl x:Class="Demo.SL.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:viewer="clr-namespace:Stimulsoft.Report.Viewer;assembly=Stimulsoft.Report.Viewer.SL">
 <Grid>
  <viewer:StiSLViewerControl x:Name="viewerControl" Grid.Column="1"/>
 </Grid>
</UserControl>
Thank you.