Hyperlinks Back 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>
The ID of the item becomes a hyperlink that is clickable from inside of Excel, and then opens the same issue in a new browser window.
|
The hyperlink tag does not support implicit iteration: it wont work with the items variable. So this won't work:
|
<jt:hyperlink address="${cbBaseUrl}${items.urlLink}" value="${items.id}"></jt:hyperlink>
Instead of you have to do an
forEach iteration
like this in your Excel:
ID | Name | |
---|
<jt:forEach items="${items}" var="it"><jt:hyperlink address="${cbBaseUrl}${it.urlLink}" value="${it.id}"/> | ${it.name} |