Hi,
I have created a TRDX report files using Telerik stand alone report designer. I created an asp.net web application and calling the TRDX report in the browser using telerik report viewer control. Below is the code used in the page load to call trdx report.
var reportSource = new UriReportSource() { Uri = "EVB_002.trdx" };
this.ReportViewer1.ReportSource = reportSource;
We need to implement support for different languages in these reports, example when user wants to see report headers in French, there must be an option for user to select the language. I have gone through following 2 links given in telerik documentation and created a resource file(.resx).
http://www.telerik.com/help/reporting/report-viewer-localization.html
http://www.telerik.com/help/reporting/advanced-localizing-reports.html
Please let me know the next steps to associate the resource files with telerik report viewer so that reports can be viewed in other languages.
Thanks,
Daniel