Page 2 of 2
Re: can StiWebViewerFx competent work without flash
Posted: Thu Jun 19, 2014 1:56 pm
by HighAley
Hello.
The trial version has no any limitation except Demo watermark.
Please, send us a sample project with all data which reproduces the issue for analysis.
Thank you.
Re: can StiWebViewerFx competent work without flash
Posted: Mon Jun 23, 2014 8:24 am
by a.ebbini
You Can find the project in the attachment.please advice.
Thank you.
Re: can StiWebViewerFx competent work without flash
Posted: Mon Jun 23, 2014 11:28 am
by HighAley
Hello.
Please, follow next steps:
1. Add GetReportData event:
Code: Select all
Protected Sub RV_GetReportData(sender As Object, e As Stimulsoft.Report.Web.StiReportDataEventArgs) Handles RV.GetReportData
RV.Report.RegData("EmployeeView", GetEmployees)
End Sub
2. Set next properties of WebViewer:
Code: Select all
<cc1:StiWebViewer ID="RV" runat="server" RenderMode="AjaxWithCache" />
3. Change code that loads report:
Code: Select all
Private Sub ShowReport()
Dim Report As Stimulsoft.Report.StiReport = New Stimulsoft.Report.StiReport
Report.Load(My.Resources.Report)
Report.Compile()
Report.RegData("EmployeeView", GetEmployees)
RV.Report = Report
End Sub
Thank you.
Re: can StiWebViewerFx competent work without flash
Posted: Wed Jun 25, 2014 10:19 am
by a.ebbini
Hello,
Thank very much interactive sorting working well but there is another thing i put report selection combo when i choose the first report
it is render well with interactive sort but when i change the selection and i try view the second one it loads the first one.
And to solve the problem temporary i remove RenderMode="AjaxWithCache" property from report viewer and the report selection work well but without interactive sorting.
I have attach sample project.
I need your advice.
Thank you.
Re: can StiWebViewerFx competent work without flash
Posted: Mon Jun 30, 2014 9:17 am
by a.ebbini
any update ?
Re: can StiWebViewerFx competent work without flash
Posted: Mon Jun 30, 2014 9:49 am
by Vladimir
Hello,
Sorry for the delay. Please, follow next steps:
1. In the ShowReport() method, add the following line of code before assigning report:
Code: Select all
....
RV.ResetReport()
RV.Report = Report
2. Change the condition in the Page_Load event to the following (or delete all of the code, if the automatic loading a report is not required):
Code: Select all
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
'If Page.IsCallback Then
If Not Page.IsPostBack Then
ShowReport()
End If
End Sub
Thank you.
Re: can StiWebViewerFx competent work without flash
Posted: Thu Jul 10, 2014 9:34 am
by a.ebbini
Dear Support Team,
Thank you very much.
Re: can StiWebViewerFx competent work without flash
Posted: Thu Jul 10, 2014 10:46 am
by Andrew
Hello,
We are happy to help you!