Hi,
https://www.telerik.com/blogs/telerik-reporting-modern-ui-report-viewer-demo
I have followed the steps in this example and created a Reporting rest service and added the report viewer to my Blazor app. The rest service is running and I can display a report in the viewer.
I'm struggling though to retrieve the list of reports for the drop down list. Should the rest service provide a list of files available from the endpoint "files" ?
ReportList = await HttpClient.GetFromJsonAsync<List<
string
>>(
"/api/files"
);
I'm currenly get a 404 error in the on intialazied method.
Thanks
Rob