Reputation: 138
I have created SSRS report which has multiple column like date, time , location, note fields & group by meeting-name.
On date field, i have created hyperlink to open another report of document related to particular meeting.
Now i want to set hyperlink on entire row in SSRS report to open another report.
Upvotes: 2
Views: 357
Reputation: 15175
It is not possible using the built in SSRS controls to have a row click take you to another report, however, there are hacks. Unless you want to spend a lot of time getting things right, I would suggest just scaling back your requirements on this ;)
Modify ReportingServices.js
This is a complete hack. This file resides in the Reporting Services installation folder on the server and is loaded by the ReportViewer control to render server side reports. You could add some semantics there to customize and extend functionality in your reports. Here is a little more detail and an example of this method.
Modify PageThatContainReportViewer.aspx
You can add Javascript code to the page that contains the report viewer. Since JavaScript will call up for functions then js you place in your root page will be reachable by your report. Also, you can interact with the report contents once the report is rendered in the viewer, again, a complete hack.
Upvotes: 1