Answered by:
Entire Row as Hyperlink

Question
-
User-1152693950 posted
Hello all, I have a crystal report that shows a row for each item in a database. Each item has a full page detail view that allows for editing and viewing all fields. I would like the user to be able to click anywhere in the row and have that link them to the detail page, however I cant seem to find where to set the hyperlink for the entire row.
Any Suggestions?
Thanks,
Brennan
Tuesday, May 7, 2013 7:01 AM
Answers
-
User-851967432 posted
Well you can't set it up for the entire row. You have to set the URL for each individual column.
- Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
Tuesday, May 7, 2013 11:17 AM
All replies
-
User-851967432 posted
Well you can't set it up for the entire row. You have to set the URL for each individual column.
- Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
Tuesday, May 7, 2013 11:17 AM -
User-1152693950 posted
That seems to be the case. I ended up control-selecting all of the fields and setting the hyperlink.
Tuesday, May 7, 2013 1:36 PM -
User-851967432 posted
Yeah personally I wouldn't created a URL column instead of creating a hyperlink for every column.
Tuesday, May 7, 2013 1:44 PM -
User-1152693950 posted
How would I go about doing that?
Tuesday, May 7, 2013 1:45 PM -
User-851967432 posted
In the stored procedure that populates the report, I would generate a column that builds the URL then simple set that column as a hyperlink in the report.
SELECT ID, FName + ' ' + LName[Name], Address, 'http://' + LName + '.com'[URL]
Tuesday, May 7, 2013 2:24 PM