Is it possible to render the reports without a popup?

Stimulsoft Reports.Silverlight discussion
Locked
nitinsobti
Posts: 19
Joined: Wed Sep 19, 2012 3:07 pm

Is it possible to render the reports without a popup?

Post 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
Alex K.
Posts: 6488
Joined: Thu Jul 29, 2010 2:37 am

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

Post 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.
Locked