HI,
This is Tamilmani Mohan. I am working as PHP Developer. I am not familiar in .Net code.
I have few issue in Server Side Rendering.
Page URL : http://es.infragistics.com/products/reporting/sample/client-server-rendering/server-side-rendering
Page Name : ServerSideRendering.htm
In SeverSideRendering.htm page,
Data are loading from Service [ ReportService.svc/ajaxAddress ].
How to load the data from database or script instead of service?. I need Export , Zoom and Refresh options.
Could you please any one help in this issue?
Thanks
Tamilmani Mohan
Hi,
The available data sources are SQL Data Source or an Object Data Source. You can use the object data source to connect to plain objects, Entity Framework, RIA Services, etc.
Just to reinforce what I said above, this available data sources are for defining the reports, not the viewer. The deployment scenario defines which components actually consume the data. i.e. if you have a stand-alone WPF application the engine will be executed in the context of the WPF viewer so it will connect directly to the data source. If you are using HTML5 the viewer relies on the server to connect to the data sources used by the report.
Best,
Leo
Thanks for your response Leo, can pl. clarify what are the possible source of DATA for Infragistcs Report Viewer ?
The endpoint you mention is the Report Server endpoint, I mean, it is not a data source endpoint.
As I mentioned above, the html viewer always relies on the Report Server to get its data, it never connects directly to the data sources.
Hope it clarifies.
Hi Leo,
We noticed that the sample http://es.infragistics.com/products/reporting/sample/viewers/html-viewer is using Service End Point for data source.And this sample http://es.infragistics.com/products/jquery/sample/grid/paging using Database Record/JSON.
What are possible data source for Infragistics report viewer component ?
Hi Tamilmani,
In the sample you mentioned the report data came from an SQL database. There are two components involved, HTML5 viewer and the Report Server. The Report Server acts as intermediary, connecting to the DB and rendering the report. The server generates an intermediate representation of the rendered report that then is presented by the HTML5 viewer.
So, when using the HTML5 you will always need a Report Server to connect to the data and do the rendering.
Hope it helps.