Full version saved in the server
Full version saved in the server
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
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
Hello,
You need release event SaveReport of StiWebDesigner. Please check attached report.
Thank you.
You need release event SaveReport of StiWebDesigner. Please check attached report.
Thank you.
- Attachments
-
- 507.LoadSaveDemo.zip
- (305.97 KiB) Downloaded 257 times
Full version saved in the server
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
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
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:
Thank you.
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
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
I work with StiWebViewerFx control and does not own savemode
Full version saved in the server
Hello,
It seems I do not understand your question. Could you, please clarify your issue?
Thank you.
It seems I do not understand your question. Could you, please clarify your issue?
Thank you.
Full version saved in the server
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
Ok! Great! :biggrin: