C# ASP.NET MVC
I have the following code in view:
<script type="text/javascript">
$("#reportViewer1").telerik_ReportViewer({
templateUrl: "/Resources/Templates/telerikReportViewerTemplate.html",
serviceUrl: "/api/reports",
reportSource: {report: "VentasFamilia.trdp",
parameters: {
Delegaciones: $("#filterDelegacion").data("kendoMultiSelect").value(), Familias: $("#filterFamilia").data("kendoMultiSelect").value(),
Series: $("#filterSerie").data("kendoMultiSelect").value(),
FechaInicio: $("#desde").val(),
FechaFin: $("#hasta").val()
}
}
});
</script>
How should I do on the controller to receive the parameters and name of the report?