Jay Chakra
Jay Chakra

Reputation: 1511

SpagoBI: Adding external hyperlink to report

I am building a report in SpagoBI using birt. I have build the report but I wanted to add a hyperlink that will point to an external site. I am unable to figure out how to do it.

Any help is highly apprciated.

Upvotes: 1

Views: 563

Answers (1)

Darshit Vora
Darshit Vora

Reputation: 26

Perform below steps:

  1. Open your BIRT report in SpagoBI studio (eclipse)
  2. Click on the data element of table
  3. Select property window which is situated at bottom of studio
  4. Select hyperlink tab. Click on Edit
  5. To add custom URI. Select URI from dropdown. Click on fx (javascript syntax)
  6. Add URI in javascript format - "http://www.example.com/"+row["id"]. Here id is column value to be passed

Click here to check sample property window editor view

Upvotes: 1

Related Questions