EditTool in StiViewer
Posted: Fri Apr 27, 2018 8:26 am
Hi,
I'm using Stimulsoft Trial Version 1.8 with wpf/c#.
Unfortunately there is a problem using the EditTool when embedded in my window.
I embedded a StiViewer in my xaml like:
and load a simple report into it by:
as far as good, the report is shown in the viewer.
But the EditTool Button is inactive and even if I set it manually to
and click it, the edit mode cannot be entered.
If I call
instead of 'Render()' a new dialog window is shown with active EditTool-button and the text field can be edited as expected.
Do you have any advise or solution for us. It is an essential feature we do not want to miss, if we buy your product.
I'm using Stimulsoft Trial Version 1.8 with wpf/c#.
Unfortunately there is a problem using the EditTool when embedded in my window.
I embedded a StiViewer in my xaml like:
Code: Select all
<wpfViewer:StiWpfViewerControl Grid.Row="1" Grid.Column="0" Name="StiViewer1" HorizontalAlignment="Stretch"/>
Code: Select all
StiReport stiReport1 = new StiReport();
stiReport1.Load("..\\..\\Reporting\\edittext.mrt"); // a report with a single textbox (editable set to 'True')
this.StiViewer1.Report = stiReport1;
stiReport1.Render();
as far as good, the report is shown in the viewer.
But the EditTool Button is inactive and even if I set it manually to
Code: Select all
this.StiViewer1.IsToolEditorEnabled = true;
If I call
Code: Select all
stiReport1.Show();
Do you have any advise or solution for us. It is an essential feature we do not want to miss, if we buy your product.