I am using Birt engine to generate report in our java web application. I need to add a download link for each row which generated. can you help me how can i add this option in my report.
Asked
Active
Viewed 33 times
1 Answers
0
That is quite easy to do. You can select any label or data field on your report or table.
- Open the properties editor and open the tab 'Hyperlink'
- click edit
- select URI
- open the expression editor by selecting javascript syntax right next to the location field.
- Now you can build a dynamic link based the columns in your dataset/table.
- for example: "http://" + row["myUrl"] + "/"
- OK your way back and enjoy the result.

Jeroen
- 1,638
- 3
- 23
- 48