Hi all
I take this code part from a sample project and modify only reportSource. It was working but i didn't know how it was working
Then i've tried to add reporting parameter, then problems started to show itself. Parameters not shown in parameter area in browser view although shown in design view. That's why i want to learn how it's working.
I've searched documents in internet but couldn't found.
I wonder especially, how serviceUrl is work and where is /api/reports/
i would appreciate, if you tell what other parameters is for and how they are working or give link of a document.
$reportViewer = $("#reportViewer1")
.telerik_ReportViewer({
serviceUrl: "/api/reports/",
templateUrl: '/ReportViewer/templates/telerikReportViewerTemplate.html',
reportSource: { report: "MyClassLib.Group, MyClassLib" },
viewMode: telerikReportViewer.ViewMode.Interactive,
scaleMode: telerikReportViewer.ScaleModes.SPECIFIC,
scale: 1.0,
PersistSession: false
});
Then i've tried to add reporting parameter, then problems started to show itself. Parameters not shown in parameter area in browser view although shown in design view. That's why i want to learn how it's working.
I've searched documents in internet but couldn't found.
I wonder especially, how serviceUrl is work and where is /api/reports/
i would appreciate, if you tell what other parameters is for and how they are working or give link of a document.