Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X
Hi,
I would like to define an interwiki stereotype in the application configuration resulting from this interwiki link
[<<itemnamerevision5>>|ISSUE:1234]
the following format:
Requirement name (Rev0, REQ-1234)
Application configuration:
"itemnamerevision5" : {
"link" : {
"text" : "${name} (Rev${customField[5]}, ${trackerKey}-${id})"
},
"popup" : {
"text" : "Description: ${description}"
}
}
The variable ${trackerKey} does not work asexpected. I also tried several other variable names without success. How can I address the tracker key?
CB version: 2.1.0.6
Thank you in advance.
Solved! Go to Solution.
Have you tried tracker.key? It seems to work for me.
"myitem" : {
"link" : {
"text" : "${summary} ${tracker.key} ${id}"
},
"popup" : {
"text" : "${interwikiLink} Status: ${status}; Description: ${description}"
}
}
Have you tried tracker.key? It seems to work for me.
"myitem" : {
"link" : {
"text" : "${summary} ${tracker.key} ${id}"
},
"popup" : {
"text" : "${interwikiLink} Status: ${status}; Description: ${description}"
}
}