Page 1 of 1
Full version saved in the server
Posted: Fri Jul 23, 2010 6:58 am
by jpascual
I'm doing tests with the demo version of the component and the report editor can not save the changes.
I want to know whether the full version when you modify a Web report, the server is stored in the same or modified file is saved on the local computer.
thanks
Full version saved in the server
Posted: Fri Jul 23, 2010 9:27 am
by Jan
Hello,
You need release event SaveReport of StiWebDesigner. Please check attached report.
Thank you.
Full version saved in the server
Posted: Thu Aug 05, 2010 1:52 am
by jpascual
I've save the report with the following code:
Dim As StiReport = e.Report oRep
e.Report.Save (savepath)
But I have a problem, as redirects to load the form so that after the 'save' shows the viewer instead of the designer. I need the code as if you press 'Exit' from designer
Full version saved in the server
Posted: Thu Aug 05, 2010 6:57 am
by Vladimir
Hello,
To do this you need to set the SaveMode property to Visible, and, in the SaveReport event, after your code, add a redirect to the viewer page:
Code: Select all
protected void StiWebDesigner1_SaveReport(object sender, StiWebDesigner.StiSaveReportEventArgs e)
{
...
Page.Response.Redirect("ViewerPage.aspx");
}
Thank you.
Full version saved in the server
Posted: Wed Aug 11, 2010 6:07 am
by jpascual
I work with StiWebViewerFx control and does not own savemode
Full version saved in the server
Posted: Thu Aug 12, 2010 5:05 am
by Andrew
Hello,
It seems I do not understand your question. Could you, please clarify your issue?
Thank you.
Full version saved in the server
Posted: Fri Aug 13, 2010 3:46 am
by jpascual
Sorry, my mistake was that I thought the property was in control in StiWebViewerFx and was in StiWebDesigner control. Thanks already works.
Full version saved in the server
Posted: Fri Aug 13, 2010 7:36 am
by Andrew
Ok! Great! :biggrin: