Hyperlinks to Codebeamer
Use the following format to create a hyperlink that points back to Codebeamer:
<jt:hyperlink address="${cbBaseUrl}${item.urlLink}" value="${item.id}"></jt:hyperlink>
This adds a hyperlink to the ID of an item in the Excel, and you can click to open the same issue in a new browser window from Excel.
* 
The hyperlink tag does not support implicit iteration, it wont work with the items variable. Hence, you can not use the following tag.
<jt:hyperlink address="${cbBaseUrl}${items.urlLink}" value="${items.id}"></jt:hyperlink>
Instead, use forEach tag as shown in the following table.
ID
Name
<jt:forEach items="${items}" var="it"><jt:hyperlink address="${cbBaseUrl}${it.urlLink}" value="${it.id}"/>
${it.name}
Was this helpful?