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
Is it possible to render the reports without a popup?
-
- Posts: 19
- Joined: Wed Sep 19, 2012 3:07 pm
Re: Is it possible to render the reports without a popup?
Hello,
You can place the Stimulsoft.Report.Viewer.StiSLViewerControl on any control and set for the Report property a rendered report
example:
Thank you.
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>